/* FAQ SECTION */

.faq-section{
    padding:90px 20px;
    background:#f4f8fc;
}

.faq-container{
    max-width:1400px;
    margin:auto;
}

/* HEADER */

.faq-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:65px;
}

.faq-header span{
    display:inline-block;
    color:#ff6b00;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.faq-header h2{
    font-size:58px;
    line-height:1.1;
    font-weight:800;
    color:#081120;
    margin-bottom:22px;
}

.faq-header p{
    font-size:18px;
    line-height:1.8;
    color:#5b6472;
}

/* GRID */

.faq-grid{
    display:grid;
    grid-template-columns:1.2fr 0.7fr;
    gap:32px;
    align-items:start;
}

/* LEFT */

.faq-left{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* FAQ ITEM */

.faq-item{
    background:#ffffff;
    border:1px solid #dce7f2;
    border-radius:24px;
    overflow:hidden;
    transition:0.3s ease;
}

.faq-item.active{
    border-color:#0d6efd;
    box-shadow:0 12px 35px rgba(0,0,0,0.05);
}

/* QUESTION */

.faq-question{
    width:100%;
    background:none;
    border:none;
    outline:none;
    cursor:pointer;
    padding:28px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    text-align:left;
}

.faq-question span{
    font-size:21px;
    line-height:1.5;
    font-weight:700;
    color:#081120;
}

/* ICON */

.faq-icon{
    min-width:52px;
    width:52px;
    height:52px;
    border-radius:16px;
    background:#edf4ff;
    color:#0052cc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    transition:0.3s ease;
}

.faq-item.active .faq-icon{
    background:#0052cc;
    color:#ffffff;
    transform:rotate(45deg);
}

/* ANSWER */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-answer p{
    padding:0 30px 30px;
    font-size:16px;
    line-height:1.9;
    color:#5b6472;
}

/* RIGHT */

.faq-right{
    display:flex;
    flex-direction:column;
    gap:24px;
}

/* SIDE CARD */

.side-card{
    background:linear-gradient(135deg,#0052cc,#0077ff);
    border-radius:28px;
    padding:38px;
    color:#ffffff;
    position:sticky;
    top:30px;
    overflow:hidden;
}

.side-card::before{
    content:"";
    position:absolute;
    right:-40px;
    top:-40px;
    width:180px;
    height:180px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
}

/* ICON */

.side-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:26px;
}

.side-card h3{
    font-size:34px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:18px;
}

.side-card p{
    font-size:16px;
    line-height:1.9;
    opacity:0.92;
    margin-bottom:30px;
}

/* BUTTON */

.side-card a{
    display:inline-block;
    text-decoration:none;
    background:#ffffff;
    color:#0052cc;
    padding:18px 30px;
    border-radius:60px;
    font-size:15px;
    font-weight:700;
    transition:0.3s ease;
}

.side-card a:hover{
    transform:translateY(-4px);
}

/* MINI BOX */

.mini-info{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.mini-box{
    background:#ffffff;
    border:1px solid #dce7f2;
    border-radius:22px;
    padding:28px;
    transition:0.3s ease;
}

.mini-box:hover{
    transform:translateY(-4px);
    border-color:#0d6efd;
}

.mini-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:14px;
    color:#081120;
}

.mini-box p{
    font-size:15px;
    line-height:1.8;
    color:#5b6472;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .faq-grid{
        grid-template-columns:1fr;
    }

    .faq-header h2{
        font-size:46px;
    }
}

@media(max-width:768px){

    .faq-section{
        padding:70px 16px;
    }

    .faq-header h2{
        font-size:36px;
    }

    .faq-question{
        padding:24px;
    }

    .faq-question span{
        font-size:18px;
    }

    .side-card{
        padding:30px 24px;
    }

    .side-card h3{
        font-size:28px;
    }
}