/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-content {
    padding: 4rem 0;
}

/* Intro Section */
.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-section h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* Team Section */
.team-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.team-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.team-content p {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.values {
    display: grid;
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.value-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.value-item p {
    margin: 0;
    font-size: 0.95rem;
}

.team-image {
    position: relative;
}

.team-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-caption {
    text-align: center;
    margin-top: 1rem;
}

.team-caption p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.philosophy-section h2 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.philosophy-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-item p {
    line-height: 1.8;
    color: var(--gray-dark);
}

/* Network Section */
.network-section {
    margin-bottom: 4rem;
}

.network-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.network-section > p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.network-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.network-section li {
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
}

.network-section li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(207,13,101,0.1), rgba(0,47,83,0.1));
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.cta-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* Fun Fact */
.fun-fact {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.fun-fact-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fun-fact h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.fun-fact p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .team-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .network-section ul {
        grid-template-columns: 1fr;
    }
    
    .values {
        gap: 1.5rem;
    }
    
    .philosophy-section {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
}