/* Custom Font Definitions */
.font-oswald {
    font-family: 'Oswald', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Custom Colors based on PRD/Inspiration: Teal/Blue Primary, Accent Green */
.bg-primary {
    background-color: #1a73e8;
}

.text-primary {
    color: #1a73e8;
}

.bg-accent {
    background-color: #34a853;
}

.hover-accent:hover {
    background-color: #2e8d46;
}

/* Custom styles for the sticky header */
header {
    z-index: 1000;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05);
}

/* FAQ Accordion Smooth Animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.open {
    max-height: 500px;
    transition: max-height 0.4s ease-in, padding 0.3s ease-in;
}
