:root {
    --primary-400: #fb923c; /* Orange 400 */
    --primary-500: #f97316; /* Orange 500 */
    --primary-600: #ea580c; /* Orange 600 */
    --secondary-900: #0f172a; /* Slate 900 */
    --white: #ffffff;
}

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

#hero {
    background-image: url('https://r2.flowith.net/files/png/3327K-man_reading_business_book_in_office_index_0@1024x1024.png');
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-500);
    color: var(--white);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.cta-button:hover {
    background-color: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.cta-button-sm {
    display: inline-block;
    background-color: var(--primary-500);
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.cta-button-sm:hover {
    background-color: var(--primary-600);
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.icon-wrapper {
    display: inline-flex;
    padding: 1rem;
    border-radius: 9999px;
    background-color: var(--primary-500);
    color: var(--white);
}

.testimonial-card {
    background-color: #1e293b; /* Slate 800 */
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #334155; /* Slate 700 */
}

.faq-item {
    border: 1px solid #e2e8f0; /* Slate 200 */
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: left;
    background-color: white;
    color: var(--secondary-900);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #f8fafc; /* Slate 50 */
    color: #475569; /* Slate 600 */
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
}


.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animation.visible {
    opacity: 1;
    transform: translateY(0);
}
