body {
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sintony', sans-serif;
}
.phase-card {
    transition: all 0.3s ease-in-out;
    scroll-margin-top: 20px;
}
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #34eb95; /* Custom green */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
textarea {
    min-height: 150px;
}
.btn-primary {
    background-color: #34eb95;
    color: #000000;
}
.btn-primary:hover {
    background-color: #28b873;
}
.ai-disclaimer {
     margin-top: 1rem;
     padding: 0.75rem;
     background-color: rgb(255 251 235); /* yellow-50 */
     border: 1px solid rgb(254 226 128); /* yellow-200 */
     border-radius: 0.5rem;
     font-size: 0.875rem;
     color: rgb(180 83 9); /* yellow-800 */
}
/* Fix for input text color */
input, textarea, select {
    color: #000000;
}
/* FAQ Accordion Styles */
.faq-question svg {
    transition: transform 0.3s ease-in-out;
}
.faq-question.open svg {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
}
.faq-answer.open {
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    max-height: 1000px; /* Large enough to fit any content */
}