
/* =========================
   RESET
========================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


/* =========================
   BODY
========================= */

body {

    font-family: Arial, Helvetica, sans-serif;

    background: #fff8e8;

    color: #5f3323;

}


/* =========================
   HEADER
========================= */

.site-header {

    height: 90px;

    background: #fff8e8;

    display: flex;

    justify-content: flex-end;

    align-items: center;

    padding: 0 7%;

    position: relative;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.10);

    z-index: 10;

}


/* Logo */

.site-logo {

    position: absolute;

    left: 2%;

    top: 20px;

    width: 225px;

    height: 225px;

    object-fit: contain;

    z-index: 20;

}


/* Navigation */

.site-header nav {

    display: flex;

    align-items: center;

    gap: 35px;

}


.site-header nav a {

    text-decoration: none;

    color: #522813;

    font-size: 17px;

    font-weight: bold;

}


.site-header nav a:hover {

    color: #c59d5f;

}


/* =========================
   PAGE INTRO
========================= */

.faq-intro {

    background: #522813;

    text-align: center;

    padding: 80px 20px 70px;

}


.faq-intro h1 {

    font-family: Georgia, serif;

    font-size: 48px;

    color: #f4c861;

    margin-bottom: 18px;

}


.faq-intro h1::after {

    content: "";

    display: block;

    width: 90px;

    height: 2px;

    background: #d6a532;

    margin: 18px auto 0;

}


.faq-intro p {

    font-size: 18px;

    line-height: 1.7;

    color: #e6ca8a;

    max-width: 700px;

    margin: 20px auto 0;

}


/* =========================
   FAQ INTRODUCTION
========================= */

.faq-about {

    text-align: center;

    padding: 75px 8% 55px;

    background: #ffdda1;

}


.faq-about h2 {

    font-family: Georgia, serif;

    font-size: 42px;

    color: #522813;

}


.heading-line {

    width: 90px;

    height: 2px;

    background: #d6a532;

    margin: 18px auto 25px;

}


.faq-about p {

    max-width: 850px;

    margin: 0 auto 12px;

    font-size: 18px;

    line-height: 1.8;

}


/* =========================
   FAQ SECTION
========================= */

.faq-section {

    padding: 80px 8%;

    background: linear-gradient(
        to bottom,
        #fff8e8 0%,
        #dfe0bd 45%,
        #d8c47d 75%,
        #fff8e8 100%
    );

}


/* =========================
   FAQ ITEM
========================= */

.faq-item {

    max-width: 950px;

    margin: 0 auto 16px;

    background: #fff8e8;

    border-radius: 14px;

    box-shadow:
        0 5px 18px rgba(70, 45, 25, 0.12);

    overflow: hidden;

}


/* =========================
   QUESTION
========================= */

.faq-item summary {

    list-style: none;

    cursor: pointer;

    padding: 24px 30px;

    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: bold;

    color: #522813;

    background: #fff8e8;

    transition:
        background 0.25s ease;

}


.faq-item summary::-webkit-details-marker {

    display: none;

}


.faq-item summary:hover {

    background: #f4e7c8;

}


/* Arrow */

.faq-item summary::before {

    content: "▸";

    display: inline-block;

    margin-right: 14px;

    color: #c99a35;

    transition: transform 0.25s ease;

}


.faq-item[open] summary::before {

    transform: rotate(90deg);

}


/* =========================
   ANSWER
========================= */

.faq-answer {

    padding: 28px 35px 32px;

    border-top: 1px solid rgba(82, 40, 19, 0.15);

    background: #fffdf4;

}


.faq-answer p {

    font-size: 17px;

    line-height: 1.8;

    color: #5f3323;

    margin-bottom: 15px;

}


.faq-answer p:last-child {

    margin-bottom: 0;

}


/* =========================
   FOOTER
========================= */

.faq-footer {

    text-align: center;

    padding: 70px 20px;

    background: #f4c861;

}


.faq-footer p {

    font-family: Georgia, serif;

    font-size: 25px;

    color: #522813;

    margin-bottom: 20px;

}


/* =========================
   BUTTON
========================= */

.cat-button {

    display: inline-block;

    padding: 13px 28px;

    background: #c99a35;

    color: white;

    text-decoration: none;

    border-radius: 25px;

    font-weight: bold;

    transition:
        background 0.3s ease,
        transform 0.2s ease;

}


.cat-button:hover {

    background: #a97922;

    transform: translateY(-2px);

}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .site-logo {

        width: 180px;

        height: 180px;

    }


    .faq-section {

        padding: 70px 7%;

    }


    .faq-item summary {

        font-size: 21px;

    }

}


/* =========================
   PHONE
========================= */

@media (max-width: 650px) {

    .site-header {

        height: 75px;

        padding-right: 5%;

    }


    .site-logo {

        width: 130px;

        height: 130px;

        top: 15px;

        left: 2%;

    }


    .site-header nav {

        gap: 15px;

    }


    .site-header nav a {

        font-size: 14px;

    }


    .faq-intro {

        padding: 60px 20px;

    }


    .faq-intro h1 {

        font-size: 38px;

    }


    .faq-intro p {

        font-size: 16px;

    }


    .faq-about {

        padding: 60px 7% 45px;

    }


    .faq-about h2 {

        font-size: 36px;

    }


    .faq-about p {

        font-size: 16px;

    }


    .faq-section {

        padding: 60px 5%;

    }


    .faq-item summary {

        padding: 20px;

        font-size: 19px;

        line-height: 1.5;

    }


    .faq-answer {

        padding: 24px 20px 27px;

    }


    .faq-answer p {

        font-size: 16px;

    }


    .faq-footer {

        padding: 60px 20px;

    }

}

.moreinfo {

    background: #fff8e8;

    padding: 50px;

    text-align: center;
}


.moreinfo a {

    color: #522813;

    font-weight: bold;

    text-decoration: none;

    margin: 0 15px;
}


.moreinfo a:hover {

    color: #c59d5f;
}


.moreinfo p {

    margin-top: 25px;

    font-size: 14px;

    color: #6d6258;
}
