
/* Main Content */
.main-content {
    padding: 4rem 0;
}
.section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}
.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.4s; }
.section:nth-child(4) { animation-delay: 0.6s; }
.section:nth-child(5) { animation-delay: 0.8s; }
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-green-primary);
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.section-title i {
    font-size: 2rem;
    color: var(--color-green-light);
    background: linear-gradient(135deg, var(--color-green-lightest), var(--color-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    right: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(-90deg, var(--color-green-dark), var(--color-green-light));
    border-radius: var(--border-radius-full);
    animation: expandLine 1.2s ease-out 0.5s forwards;
    box-shadow: 0 2px 8px rgba(114, 176, 29, 0.3);
}
.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(158, 212, 94, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(-90deg, var(--color-green-dark), var(--color-green-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(114, 176, 29, 0.3);
}
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(158, 212, 94, 0.02), rgba(114, 176, 29, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: rgba(158, 212, 94, 0.4);
}
.card:hover::before {
    transform: scaleX(1);
}
.card:hover::after {
    opacity: 1;
}
.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-green-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}
.team-member {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-gray-lighter);
}
.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(-90deg, var(--color-green-dark), var(--color-green-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.team-member:hover::before {
    transform: scaleX(1);
}
.team-member:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.member-avatar {
    width: 120px;
    height: 120px;
    margin: 2rem auto 1.5rem;
    background: linear-gradient(135deg, var(--color-green-light), var(--color-green-lightest));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(114, 176, 29, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}
.team-member:hover .member-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(114, 176, 29, 0.4);
}
.member-info {
    padding: 0 2rem 2rem;
    text-align: center;
}
.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.member-number {
    color: var(--color-gray);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: var(--color-gray-lighter);
    border-radius: var(--border-radius-full);
    display: inline-block;
    margin-top: 0.5rem;
    border: 1px solid var(--color-gray-lighter);
}
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-green-light) 100%);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--color-white);
    color: var(--color-green-primary);
    text-decoration: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: var(--color-light);
}
.btn-icon {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes expandLine {
    to {
        width: 100%;
    }
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cards-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Simplified Loading Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered Animation Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }