.about-hero {
    padding: 6rem 0 4rem;
    margin-top: 70px;
    background: linear-gradient(135deg, var(--background-light) 0%, #ffffff 100%);
}

.hero-content h1 {
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-content .lead {
    color: var(--text-light);
    font-size: 1.25rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image img {
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Mission & Vision */
.mission-vision .card {
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

.mission-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.vision-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Our Story */
.our-story {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.section-title {
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.story-content .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.story-content .btn-primary:hover {
    background: #0a8a5a;
    border-color: #0a8a5a;
    transform: translateY(-2px);
}

/* Values */
.value-card {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a8a5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

/* Team */
.team-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    overflow: hidden;
    height: 250px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.card-subtitle {
    color: var(--primary-color) !important;
    font-weight: 500;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section > .container {
    position: relative;
    z-index: 1;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.cta-buttons .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
        text-align: center;
    }

    .hero-content .lead {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 0.8rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-image img {
        transform: none;
    }

    .mission-vision {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .section-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .story-content {
        text-align: center;
        padding-top: 2rem;
    }

    .story-content .btn-primary {
        width: 100%;
        max-width: 300px;
    }

    .our-values .col-md-6 {
        margin-bottom: 1rem;
    }

    .card-body .icon-wrapper {
        margin-left: auto;
        margin-right: auto;
    }

    .value-card {
        padding: 1.5rem !important;
    }

    .our-team {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .team-card {
        margin-bottom: 1.5rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
    }
}