/* About Us Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #004080, #006bc7);
    padding: 6rem 2rem;
}

.about-hero h1 {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.about-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Company Section */
.company-section {
    padding: 4rem 1rem;
    text-align: center;
}

.company-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.company-content {
    max-width: 900px;
    margin: 0 auto;
}

.company-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Core Competencies Section */
.competencies-section {
    padding: 4rem 1rem;
    background-color: var(--light-bg);
}

.competencies-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    text-align: center;
}

.competencies-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.competency-card {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.competency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.competency-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.competency-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.competency-text p {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 4rem 1rem;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
}

/* Mission Section */
.mission-section {
    padding: 4rem 1rem;
    background-color: var(--light-bg);
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.mission-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.mission-highlight p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

/* Highlights Section */
.highlights-section {
    padding: 4rem 1rem;
}

.highlights-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    text-align: center;
}

.highlights-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.highlight-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive Design for About Us Page */
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .competency-card {
        flex-direction: column;
    }
    
    .competency-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 1rem;
    }
    
    .company-section, .competencies-section, .team-section, .mission-section, .highlights-section {
        padding: 3rem 1rem;
    }
    
    .company-section h2, .competencies-section h2, .team-section h2, .mission-section h2, .highlights-section h2 {
        font-size: 2rem;
    }
    
    .mission-highlight p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .highlight-card h3 {
        font-size: 1.3rem;
    }
} 