/* Modern About Us Page - Full Width Layout */
* {
    box-sizing: border-box;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
    margin-bottom: 0;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.about-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    background: #f8fafc;
    min-height: 100vh;
}

.company-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 5%;
    background: white;
    flex-wrap: wrap;
}

.company-logo img {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.company-image img {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.content-sections {
    background: #f8fafc;
}

.content-section {
    display: flex;
    align-items: center;
    min-height: 50vh;
    padding: 60px 5%;
    position: relative;
}

.content-section:nth-child(even) {
    background: #ffffff;
}

.content-section:nth-child(odd) {
    background: #f1f5f9;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-content h2 i {
    color: #667eea;
    font-size: 2rem;
}

.section-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.section-reverse .section-content {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.no-content {
    text-align: center;
    padding: 80px 20px;
    font-size: 1.2rem;
    color: #64748b;
    background: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-section {
        padding: 50px 4%;
    }
    
    .section-content h2 {
        font-size: 2.2rem;
    }
    
    .section-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 968px) {
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 40px 4%;
        min-height: auto;
    }
    
    .section-content h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 12px;
    }
    
    .section-content h2 i {
        font-size: 1.5rem;
    }
    
    .company-images {
        flex-direction: column;
        gap: 30px;
        padding: 40px 5%;
    }
    
    .section-reverse .section-content {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 60px 20px 40px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .content-section {
        padding: 30px 5%;
    }
    
    .section-content h2 {
        font-size: 1.8rem;
    }
    
    .section-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .company-images {
        padding: 30px 5%;
    }
    
    .company-logo img {
        max-width: 150px;
    }
    
    .company-image img {
        max-width: 300px;
    }
    
    .section-reverse .section-content {
        padding: 20px;
    }
}