/* Animation */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 20px;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .back-btn, .next-btn, .submit-btn {
        width: 100%;
    }
}

/* Responsive styles for the accordion */
@media (max-width: 768px) {
    .accordion-item {
        width: 100%; /* Full width on smaller screens */
    }
}
