/* About Us Page Styles */

.about-hero {
    background: var(--primary-gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary);
}

.about-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.mission-vision-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card,
.vision-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.values-list li {
    background: var(--bg-secondary);
    border-right: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1.05rem;
    transition: background 0.3s ease;
}

.values-list li:hover {
    background: var(--bg-hover);
}

.values-list li strong {
    color: var(--primary);
    font-weight: 600;
}

.team-intro {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-primary) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.team-intro h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-section {
    background: var(--primary-gradient);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: var(--primary);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-section h2 {
        font-size: 1.6rem;
    }

    .mission-vision-wrapper {
        grid-template-columns: 1fr;
    }
}
