.form__wrapper {
    display: flex;
    gap: 5rem;
    justify-content: space-between;
    margin: 10% 0 5%;
}
.form__box {
    flex: 1;
}
.form__text h2 {
    font-size: 5rem;
    font-weight: 300;
}
.form-col input, .form-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 10px;
    resize: none;
}
.form-col {
    background: #ccc;
    padding: 1rem;
    border-radius: 10px;
}



/* ======================================== Cta Section Styling */
.cta__container {
    margin-top: 10%;
    padding: 10%;
    background: #000;
}
.cta__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}
.cta__box {
    display: flex;
    gap: 1rem;
    flex-basis: 200px;
    flex-grow: 1;
    box-shadow: 15px 15px 3px 2px rgba(50, 50, 50, 0.5);
    border: 1px solid var(--color-bg);
    padding: 2rem 1rem;
    border-radius: 10px;
    color: #fff;
}
.cta__box img {
    width: 70px;
    object-fit: cover;
    display: block;
    filter: invert(100%) sepia(92%) saturate(2%) hue-rotate(198deg) brightness(107%) contrast(100%);
}
.cta__box h2 {
    font-size: 0.9rem;
}
.cta__box p {
    padding-bottom: 0.7rem;
}


/* =============================================== Faq Section Styling */
.faq__wrapper {
    display: flex;
    gap: 5rem;
    justify-content: space-between;
    margin: 5% 0 10%;
}
.faq__box {
    flex: 1;
}
.faq__text h4 {
    padding-bottom: 1rem;
    font-weight: bold;
}
.faq-col input, .faq-col textarea{
    width: 100%;
    padding: 15px 0px;
    font-size: 1rem;
    margin-bottom: 17px;
    outline: none;
    border-bottom: 1px solid var(--color-primary);
    color: #fff;
    resize: none;
    background: inherit;
}
.faq-col h3 {
    font-size: 2rem;
    padding-bottom: 1rem;

}


/* ============= QUESTION ============== */
.faq__heading {
    margin-top: 10%;
}
.question-box{
    margin-top: 10%;
    width: 100%;
}
.faq{
    cursor: pointer;
    margin-bottom: 10px;
    /* border: 1px solid #333; */
}
.question:hover{
    /* background-color: #222; */
    color: var(--color-primary); 
}
.question{
    display: flex;
    align-items: center;
    padding: 10px 0px;
    justify-content: space-between;
}

.faq.active .question{
    /* background-color: #222; */
    color: var(--color-primary);
}
.question h2 {
    font-size: 18px;
    font-weight: 600;
}
.answer{
    background: #f5f5f5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;
}
.answer p{
    padding: 20px 40px 30px;
    line-height: 1.6rem;
    font-size: 17px;
    font-weight: 400;
    color: #033;
}
.faq.active .answer{
    max-height: 350px;
    animation: fade 1s ease-in-out;
}
.faq.active i{
    transform: rotate(45deg)
}
.faq i{
    color: var(--color-primary);
    transition: transform 0.5s ease-in;
}

@keyframes fade{
    from{
        opacity: 0;
        transform: translateY(-10px)
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}



/* ================ MEDIA QUERRIES FOR MEDIUM SCREEN ================== */
@media screen and (max-width: 1024px) {
    .container {
        width: var(--container-width-md);
    }
    .form__wrapper {
        flex-direction: column;
        margin: 10% 10% ;
    }
    .faq__wrapper {
        flex-direction: column;
        margin: 0% 10% 15%;
    }
    .faq__heading {
        margin: 10% 10% 5%;
    }
}


/* ================ MEDIA QUERRIES FOR SMALL SCREEN ================== */
@media screen and (max-width: 600px) {
    .contanier {
        width: var(--container-width-sd);
    }
    .form__wrapper {
        flex-direction: column;
        margin: 20% 0% 30%;
    }
    .form__text h2 {
        font-size: 3rem;
    }
    .faq__wrapper {
        flex-direction: column;
        margin: 0% 0% 15%;
    }
    .faq__heading {
        margin: 20% 0% 5%;
    }
    .question h2 {
        font-size: 0.8rem;
    }
    .answer p {
        font-size: 0.8rem;
        padding: 5px;
        /* background-color: violet; */
    }
}