@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&family=Quicksand:wght@300..700&display=swap");

body {
    font-family: "Figtree", sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f2f5;
}

/* ask us anything */
.ask-us-section {
    text-align: center;
    background-color: #ffffff;
    padding: 80px 50px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* border: 3px solid red; */
}
.ask-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    /* border: 3px solid red; */
    margin-top: 0;
    font-weight: 700;
}
.ask-us-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
}
.search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    /* border: 3px solid red; */
    display: flex;
}
.search-box input[type="text"] {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #ddd;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}
.search-box input[type="text"]::placeholder {
    color: #999;
}
.search-box i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #999;
}
@media (max-width: 768px) {
    .ask-us-section {
        padding: 50px;
    }
    .ask-us-section h2 {
        font-size: 1.75rem;
    }
    .ask-us-section p {
        font-size: 1rem;
    }
    .search-box input[type="text"] {
        padding: 12px 15px 12px 40px;
        font-size: 0.9rem;
    }
    .search-box i {
        left: 15px;
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .ask-us-section {
        /* border: 3px solid blue; */
        padding: 30px 20px;
    }
    .ask-us-section h2 {
        font-size: 1.5rem;
    }
    .ask-us-section p {
        font-size: 0.8rem;
    }
    .search-box input[type="text"] {
        padding: 10px 10px 10px 35px;
        font-size: 0.8rem;
    }
    .search-box i {
        left: 10px;
        font-size: 0.8rem;
    }
}

/* faq */
.faq-container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* border: 3px solid blue; */
}

.faq-types {
    width: 25%;
    padding: 20px;
    border-right: 1px solid #ddd;
    /* border: 3px solid blue; */
}

.faq-type {
    display: block;
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 10px;
    border: none;
    background: none;
    font-size: 1.25em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 12px;
    text-align: center;
    /* border: 3px solid blue; */
}

.faq-type:hover,
.faq-type.active {
    background-color: #f0f0f0;
    background: #000000;
    color: white;
}

.faq-questions {
    width: 75%;
    padding: 20px;
    /* border: 3px solid black; */
}

.faq {
    display: none;
}

.faq.active {
    display: block;
}

.faq-question {
    padding: 25px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    /* border: 3px solid red; */
}
.faq-question h3 {
    font-size: 1.25em;
    font-weight: 500;
    /* border: 3px solid red; */
    width: 90%;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 1em;
    font-weight: 400;
    /* border: 3px solid blue; */
    width: 90%;
    text-align: justify;
}

.toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2em;
    cursor: pointer;
    background-color: white;
    color: #000000;

    padding: 0px 11px 3px;
    border-radius: 3px;
    line-height: 1;
    text-align: center;
}

.faq-question.active .toggle {
    background: #000000;
    color: white;
}
@media (max-width: 1024px) {
    .faq-container {
        /* border: 3px solid red; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .faq-types {
        /* border: 2px solid blue; */
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        row-gap: 10px;
        column-gap: 10px;
        padding: 0;
    }
    .faq-type {
        min-width: 200px;
        max-width: 220px;
        font-size: 1.1em;
        font-weight: 500;
        margin-bottom: 0;
    }
}
@media (max-width: 768px) {
    .faq-type {
        min-width: 150px;
        max-width: 180px;
        font-size: 1em;
        font-weight: 500;
        padding: 10px;
        border-radius: 5px;
    }
    .faq-questions {
        /* border: 2px solid red; */
        width: 100%;
        padding: 5px;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-answer {
        font-size: 0.9em;
    }
}
@media (max-width: 576px) {
    .faq-container {
        padding: 10px;
    }
    .faq-types {
        gap: 5px;
    }
    .faq-type {
        min-width: 100px;
        max-width: 140px;
        font-size: 0.8em;
        font-weight: 500;
        padding: 8px 8px;
        margin-bottom: 0;
        border-radius: 4px;
    }
    .faq-question {
        padding: 15px;
    }
    .faq-answer {
        width: 100%;
    }
}

/* still have question section */
.questions-section {
    background: linear-gradient(
        90deg,
        rgba(123, 97, 255, 0.2),
        rgba(0, 153, 255, 0.2)
    );
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    max-width: 1000px;
    /* width: 100%; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
}
.questions-section .text-content {
    max-width: 70%;
}
.questions-section h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
}
.questions-section p {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 0.9rem;
}
.questions-section .button-container {
    display: flex;
    justify-content: flex-end;
}
.questions-section button {
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.questions-section button:hover {
    background-color: #434190;
}
@media (max-width: 1024px) {
    .questions-section {
        border-radius: 25px;
        padding: 20px 40px;
        max-width: 700px;
    }
}
@media (max-width: 768px) {
    .questions-section {
        flex-direction: column;
        text-align: center;
        margin: 40px;
    }
    .questions-section .text-content,
    .questions-section .button-container {
        max-width: 100%;
        width: 100%;
    }
    .questions-section .button-container {
        margin-top: 20px;
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .questions-section {
        margin: 40px 20px;
    }
    .questions-section p {
        font-size: 0.7em;
    }
}