@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}
.outer-Container {
    background-color: #ffffff;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* height: 100vh; */
    margin: 0;
    overflow: hidden;
    
}

.faqs-title {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background-color: #ffca45;
    border-radius: 30px 30px 0 0;


    .green-title {
        color: #00A5A2;
        font-size: 1.8em;
        margin: 20px 20px;
    }

    .yellow-dot {
        color: #00A5A2;
        font-size: 3em;
        line-height: 0px;
    }
}

.cont {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    border-radius: 50px 0 0 0;
}

.content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.faq {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: bolder;
}
.faq-question .icon {
    font-weight: bold;
    font-size: 20px;
    padding-right: 20px;
}
.faq-answer {
    display: none;
    padding-left: 50px;
    font-size: 16px;
    color: black;
}
.faq-answer p{
    border-left: 4px solid #00a5a2;
    width: 100%;
    padding-left: 15px;
    color: #acaaae;
}
.summary {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin-left: 20px;
}
.ask-container {
    background: #f9f6f6;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
}
.ask-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.ask-title {
    font-size: 24px;
    color: #00695c;
    font-weight: bold;
}
.ask-dot {
    font-size: 24px;
    color: #ffb74d;
    margin-left: 5px;
}
.ask-input {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
    resize: none;
}
.ask-input::placeholder {
    color: #ccc;
}
.support-container {
    background: #f9f6f6;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    text-align: left;
}
.support-header {
    display: flex;
    margin-bottom: 10px;
    text-align: left;
}
.support-title {
    font-size: 20px;
    color: #00695c;
    font-weight: bold;
}
.support-dot {
    font-size: 24px;
    color: #ffb74d;
   
}
.support-contact p {
    margin: 10px 0;
    font-size: 16px;
    color: #00695c;
}
.support-contact a {
    text-decoration: none;
    color: #00695c;
}
