* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
main{
    background-image: url(../assets/background/Ellipse\ 3.png);

}
body {
    font-family: "Marcellus", sans-serif;
    font-family: "Lato", sans-serif;
    background-color: #C4AD96;
}

/* FAQ Section Styling */
.faq-section {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-container {
    max-width: 95%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* Title and Subtitle Styling */
.faq-title {
    font-size: 60px;
    font-family: "Marcellus", sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
    color: #47301F;
}

.faq-subtitle {
    font-size: 28px;
    font-family: "Lato", sans-serif;
    margin-top: 50px;
    color: #000000;
    margin-bottom: 20px;
}

.faq-bold {
    font-weight: bold;
}

/* Image Styling */
.faq-image img {
    width: 100%;
    margin-top: 20px;
    border-radius: 30px;
}


/* Q/A Section... */
.faq-wrapper {
    padding: 20px 20px;
}

.faq-second-container {
    max-width: 80%;
    margin: 0 auto;
}

.faq-item {
    padding: 30px 30px 30px  50px;
    border-bottom: 2px solid #47301F;
}

.faq-item:last-child {
    padding: 30px 30px 30px 50px;
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.faq-item p {
    font-size: 1.25rem;
    color: #292727;
    line-height: 1.3;
}

.faq-item li {
    color: #292727;
}


/* Responsive design for main section */
@media screen and (max-width: 768px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-image img {
        max-width: 100%;
        height: auto;
    }

    .faq-item p {
        font-size: 0.95rem;
    }
}


@media screen and (max-width: 480px) {
    .faq-title {
        font-size: 32px;
    }

    .faq-subtitle {
        font-size: 20px;
        margin-top: 20px;
    }

    /* Q/A section */
    .faq-wrapper {
        padding: 0px 15px 0px 15px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .faq-item p {
        font-size: 1.1rem;
    }

    .faq-item {
        padding: 30px 0px 30px 0px;
        border-bottom: 2px solid #47301F;
    }

    .faq-item:last-child {
    padding: 30px 0px 0px 0px;
    border-bottom: none;
    }

    .faq-image img {
      height: 200px;
      border-radius: 20px;
      margin-top: 0px;
    }

    .faq-item li {
    font-size: 18px !important;
    }

    .footer-width-mobile {
        max-width: 90%;
    }
}