html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    /* Off-white background */
}

/* Original dot pattern */
.hero-pattern {
    background-color: #f3f4f6;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
}

.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Fade-in animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Accordion Animation */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
}

.faq-answer.open {
    max-height: 500px; /* A large value to allow for expansion */
    opacity: 1;
    padding-top: 1rem;  /* Re-applies p-4 vertical padding */
    padding-bottom: 1rem; /* Re-applies p-4 vertical padding */
    margin-top: 0.5rem; /* Re-applies mt-2 */
}

/* Custom Brand Colors */
.bg-primary {
    background-color: #2563eb;
}

.text-primary {
    color: #2563eb;
}

.border-primary {
    border-color: #2563eb;
}

.bg-primary:hover {
    background-color: #1d4ed8;
}

/* Darker shade for hover */

.bg-secondary {
    background-color: #2EBFA5;
}

.text-secondary {
    color: #2EBFA5;
}

.bg-highlight {
    background-color: #FAFF00;
}

.text-highlight {
    color: #FAFF00;
}