.psychotherapy-hero{
    margin: 10% 0;
    padding:100px 0;
    background:linear-gradient(135deg,#888888,#eef7ff);
}

.hero-image{
    border-radius:25px;
    box-shadow:0 15px 50px rgba(0,0,0,.12);
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    50%{
        transform:translateY(-12px);
    }
}

.service-badge{
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
}

.hero-content h1{
    font-size:52px;
    margin:20px 0;
}

.btn-book{
    background:#0d6efd;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
}

.btn-call{
    border:2px solid #0d6efd;
    padding:14px 28px;
    border-radius:50px;
    margin-left:10px;
    text-decoration:none;
}

.section-title{
    margin-bottom:50px;
}

.section-title span{
    color:#0d6efd;
    font-weight:600;
}

.benefit-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    margin-bottom:30px;
    transition:.4s;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.benefit-card:hover{
    transform:translateY(-10px);
}

.benefit-card i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:20px;
}

.conditions-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.conditions-grid div{
    background:#fff;
    padding:20px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.process-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.step-box{
    background:#0d6efd;
    color:#fff;
    text-align:center;
    padding:35px;
    border-radius:20px;
}

.step-box span{
    font-size:40px;
    font-weight:700;
}
.step-box h5{
    color:#ffffff;
    text-align:center;
}
.faq-item{
    margin-bottom:15px;
}

.faq-btn{
    width:100%;
    border:none;
    background:#fff;
    padding:20px;
    text-align:left;
    font-weight:600;
    border-radius:10px;
}

.faq-content{
    max-height:0;
    overflow:hidden;
    transition:.4s;
    background:#f8f9fa;
    padding:0 20px;
}

.cta-section{
    padding:80px 0;
    background:#0d6efd;
    color:#fff;
}

@media(max-width:991px){

    .hero-content h1{
        font-size:34px;
    }

    .conditions-grid,
    .process-row{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){

    .conditions-grid,
    .process-row{
        grid-template-columns:1fr;
    }

    .btn-call{
        display:block;
        margin:15px 0 0;
    }
}

/* ======================
   FAQ SECTION
====================== */

.faq-section{
    padding:100px 0;
    background:#f7f9ff;
}

.faq-heading span{
    color:#1565ff;
    font-weight:700;
    letter-spacing:1px;
}

.faq-heading h2{
    font-size:48px;
    font-weight:800;
    margin:15px 0;
}

.faq-heading p{
    color:#666;
    max-width:650px;
    margin:auto;
}

.faq-wrapper{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    background:#fff;
    border-radius:20px;
    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.4s ease;
}

.faq-item:hover{
    transform:translateY(-4px);
}

.faq-question{
    width:100%;

    border:none;
    background:#fff;

    padding:25px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:18px;
    font-weight:700;

    cursor:pointer;
}

.faq-icon{
    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eef3ff;
    color:#1565ff;

    transition:.4s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;

    transition:max-height .5s ease;
}

.faq-answer p{
    padding:0 30px 30px;
    color:#666;
    line-height:1.9;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-icon{
    background:#1565ff;
    color:#fff;
    transform:rotate(45deg);
}

.faq-item.active{
    border-left:6px solid #1565ff;
}

/* Mobile */

@media(max-width:768px){

    .faq-section{
        padding:70px 0;
    }

    .faq-heading h2{
        font-size:34px;
    }

    .faq-question{
        font-size:16px;
        padding:20px;
    }

    .faq-answer p{
        padding:0 20px 25px;
    }
}

.ot-list{
    list-style:none;
    padding:0;
    margin-top:25px;
    margin-left:0px !important;
}

.ot-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    font-size:17px;
    font-weight:500;
    color:#444;
}

.ot-list li i{
    color:#1565ff;
    font-size:18px;
    flex-shrink:0;
}