body {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff');
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    font-family: 'Open Sans', Arial, sans-serif;
}

.hero {
    width: 100%;
    height: 440px;
    position: relative;
    display: flex;
    align-items: end;
    padding: 0 0 2rem 0;
    background: url(../img/faq/background.png) no-repeat center;
    background-size: cover;
}

p,
ul,
li {
    color: #000;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 600;
}

/* Header */

.logo {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.2;
    color: black;
    position: relative;
    z-index: 1;
}

.btn-orange {
    background-color: #e17523;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.btn-orange:hover {
    background-color: #e17523;
    color: white;
}

.page-title {
    color: white;
    font-size: 48px;
    font-weight: bold;
    margin-top: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* FAQ Accordion */
.faq-container {
    max-width: 1100px;
    margin: 40px auto 4rem;
    padding: 20px;
    border: 1px solid;
}

.accordion {
    border-radius: 0px !important;
    --bs-accordion-border-radius: 0px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

.accordion-button {
    font-weight: 500;
    color: #000;
    font-size: 18px;
    background-color: transparent;
    padding: 20px 15px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #333;
    background-color: transparent;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-helper-text {
    text-align: center;
    font-size: 24px;
    margin: 100px 0;
    color: #333;
}

@media (max-width: 1200px) {
    .faq-container {
        max-width: 100%;
        margin: 20px;
    }

    .accordion-button::after {
        position: absolute;
        top: 28%;
        right: 0;
    }

    .faq-container button.accordion-button {
        position: relative;
        padding-right: 3rem;
    }
}