body {
    font-family: "Gabriela", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #f9f6f1;

}

p {
    font-family: "Cactus Classical Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.navbar-nav li {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hero-section {
    position: relative;
    height: 407px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    padding-left: 120px;
    z-index: 1;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #1e1e1e 0%, rgba(30, 30, 30, 0) 100%);
    z-index: 2;
}

.hero-text {
    position: relative;
    font-family: 'Amethysta', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 57px;
    color: #ffedca;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    white-space: pre-line;
    z-index: 3;
}


.faq-section {
    margin-bottom: 50px;

}

.faq-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 40px 0 20px;
    text-align: left;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.accordion {
    max-width: 950px;
    margin: 0 auto;
    background: transparent;
    border: none;

}

.accordion-item {
    background: white;
    border: none;
    border-radius: 50px !important;
    margin-bottom: 5px;
}

.accordion-header {
    border-radius: 50px !important;
}

.accordion-button {
    border-radius: 50px !important;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    background: white;
    color: #333;
    box-shadow: none;
    padding: 12px 16px;
}

.accordion-button:not(.collapsed)::after {
    /* transform: rotate(180deg); */
    border-radius: 0px !important;

}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: #000;
}

.accordion-button::after {
    display: none !important;
}

.accordion-button .icon {
    font-size: 18px;
    color: #f6be5a;
}

.accordion-button .icon::after {
    content: '+';
    font-size: 1.3rem;
    margin-right: 10px;
    display: inline-block;
    width: 1rem;
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed) .icon::after {
    content: '-';
}

.accordion-body {
    background-color: white;
}

@media (max-width: 768px) {

    .navbar-brand span {
        font-size: 14px;
    }

    .hero-section {
        padding-left: 20px;
        height: 300px;
    }

    .hero-text {
        font-size: 32px;
        line-height: 40px;
    }

    .faq-hero h2,
    .faq-hero p,
    .faq-title {
        text-align: center;
    }

}

@media (max-width: 480px) {
    .hero-text {
        font-size: 28px;
        line-height: 34px;
    }

    .section-title {
        font-size: 24px;
        line-height: 30px;
    }


}