@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Poppins:wght@400;600;700&display=swap');

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-lilita {
    font-family: 'Lilita One', cursive;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    color: white;
    text-transform: uppercase;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 14px 0 rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px 0 rgba(0,0,0,0.15);
}

.cta-pink {
    background-color: #ff69b4;
}

.cta-green {
    background-color: #28a745;
    padding-top: 1.25rem; /* 20px */
    padding-bottom: 1.25rem; /* 20px */
    padding-left: 2.5rem; /* 40px */
    padding-right: 2.5rem; /* 40px */
    font-size: 1.375rem; /* 22px */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-item.open .faq-answer {
    max-height: 500px; /* Adjust as needed */
}
