.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero {
    background: linear-gradient(135deg, rgba(31, 163, 122, 0.05) 0%, rgba(31, 163, 122, 0.1) 100%);
    padding: 100px 8% 80px;
    text-align: center;
}

.hero-content h2 {
    color: #1fa37a;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    font-family: "Merriweather", serif;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 8%;
    background-color: #fff;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 40px;
    color: #1a1a1a;
    font-weight: 700;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.story-text .highlight {
    color: #1fa37a;
    font-weight: 600;
}

.story-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.story-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 4px 12px rgba(31, 163, 122, 0.15));
}

.mission-vision {
    padding: 80px 8%;
    background-color: #f9fafb;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mv-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #1fa37a;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1fa37a 0%, #4fd4a8 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.mv-card:hover::before {
    transform: scaleY(1);
}

.mv-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 32px rgba(31, 163, 122, 0.2);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1fa37a 0%, #178f68 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(31, 163, 122, 0.3);
}

.mv-card:hover .mv-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(31, 163, 122, 0.4);
}

.mv-icon i {
    font-size: 32px;
    color: #fff;
}

.mv-card h3 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: "Roboto", sans-serif;
}

.mv-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.team-section h2 {
    font-size: 40px;
    color: #1a1a1a;
    font-weight: 700;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    font-family: "Merriweather", serif;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1fa37a 0%, #4fd4a8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 32px rgba(31, 163, 122, 0.2);
    border-color: rgba(31, 163, 122, 0.2);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #1fa37a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(31, 163, 122, 0.3);
}

.team-member:hover .member-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(31, 163, 122, 0.4);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member .role {
    font-size: 14px;
    color: #1fa37a;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member .bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.about-cta {
    padding: 80px 8%;
    background-color: #fff;
}

.cta-content {
    background: linear-gradient(135deg, #1fa37a 0%, #178f68 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 163, 122, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content > * {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    font-family: "Merriweather", serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #1fa37a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #1fa37a;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .about-hero {
        padding: 80px 5% 60px;
    }
    
    .about-story {
        padding: 80px 5%;
    }
    
    .mission-vision,
    .stats-section,
    .team-section,
    .about-cta {
        padding: 60px 5%;
    }
    
    .hero-content h1 {
        font-size: 44px;
    }
    
    .story-content {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .story-content {
        flex-direction: column;
    }
    
    .story-image {
        order: -1;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 4% 50px;
    }
    
    .hero-content h2 {
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .about-story,
    .mission-vision,
    .stats-section,
    .team-section,
    .about-cta {
        padding: 50px 4%;
    }
    
    .story-text h3,
    .team-section h2,
    .cta-content h2 {
        font-size: 32px;
    }
    
    .mv-card {
        padding: 40px 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .story-text h3,
    .team-section h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

/* Dark Mode Support for About Page */
[data-theme="dark"] .about-hero {
    background: linear-gradient(135deg, rgba(31, 163, 122, 0.15) 0%, rgba(31, 163, 122, 0.25) 100%);
}

[data-theme="dark"] .hero-content h1,
[data-theme="dark"] .story-text h3,
[data-theme="dark"] .team-section h2 {
    color: #e0e0e0;
}

[data-theme="dark"] .hero-content p,
[data-theme="dark"] .story-text p,
[data-theme="dark"] .team-intro {
    color: #b0b0b0;
}

[data-theme="dark"] .about-story {
    background-color: #2a2a2a;
}

[data-theme="dark"] .mv-card,
[data-theme="dark"] .team-member {
    background-color: #2a2a2a;
    border-color: rgba(31, 163, 122, 0.2);
}

[data-theme="dark"] .mv-card h3,
[data-theme="dark"] .value-item h4,
[data-theme="dark"] .team-member h4 {
    color: #e0e0e0;
}

[data-theme="dark"] .mv-card p,
[data-theme="dark"] .value-item p,
[data-theme="dark"] .team-member .bio {
    color: #b0b0b0;
}
