/* Hero section for about page */
.about-hero {
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 74px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.3));
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Breadcrumbs */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.breadcrumb-item.active {
    color: var(--primary-green);
    font-weight: 600;
}

/* Main content sections */
.content-section {
    padding: 80px 0;
}

.section-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.section-card.highlighted {
    background: var(--section-bg);
    border: 2px solid var(--primary-green);
}

.card-content {
    padding: 40px;
}

.card-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.card-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.card-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #2e2e2e;
    margin-bottom: 20px;
}

.card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-card:hover .card-image {
    transform: scale(1.05);
}

/* Alternating layout */
.section-row {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.section-row.reverse {
    flex-direction: row-reverse;
}

.content-col {
    flex: 1;
    padding: 40px;
}

.image-col {
    flex: 0 0 400px;
    overflow: hidden;
}

/* Page title */
.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 60px 0 40px;
    text-align: center;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    border-radius: 2px;
}

/* Statistics section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Team section placeholder */
.team-preview {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.team-preview h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-preview p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-team {
    background: white;
    color: var(--primary-green);
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-team:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    color: var(--primary-green);
}

/* Responsive design */
@media (max-width: 768px) {
    .about-hero {
        height: 300px;
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-row {
        flex-direction: column !important;
        min-height: auto;
    }
    
    .image-col {
        flex: none;
        width: 100%;
    }
    
    .card-content {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar for content */
.card-content::-webkit-scrollbar {
    width: 6px;
}

.card-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.card-content::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 3px;
}