@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

/* Accordion styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content.open {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.accordion-trigger svg {
    transition: transform 0.3s ease;
}

.accordion-trigger.open svg {
    transform: rotate(180deg);
}

/* Initial hidden state for scroll animations */
.scroll-animate {
    opacity: 0;
}

.scroll-animate.animated {
    opacity: 1;
}
