.treat-hero{
background:url("https://images.unsplash.com/photo-1581594693702-fbdc51b2763b") center/cover;
height:420px;
position:relative;
display:flex;
align-items:center;
}

.treat-hero-overlay{
background:rgba(15,76,129,0.85);
width:100%;
height:100%;
display:flex;
align-items:center;
}

.treat-hero h1{
color:#fff;
font-size:46px;
margin-bottom:10px;
}

.treat-hero p{
color:#e8f2ff;
max-width:600px;
margin-bottom:20px;
}

.btn-appointment{
background:#1fb6a6;
color:#fff;
padding:12px 26px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}









.treat-section{
padding:90px 0;
}

.treat-section.light{
background:#f7fbff;
}

.treat-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.treat-grid.reverse{
direction:rtl;
}

.treat-grid.reverse .treat-content{
direction:ltr;
}

.treat-image img{
width:100%;
border-radius:15px;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

.treat-content h2{
font-size:34px;
color:#0f4c81;
margin-bottom:15px;
}

.styled-list li{
margin-bottom:8px;
}



.symptom-grid{
columns:2;
}

.btn-outline{
border:2px solid #0f4c81;
padding:10px 22px;
border-radius:30px;
text-decoration:none;
color:#0f4c81;
display:inline-block;
margin-top:15px;
}






  /* HERO */

.treatments-hero{
background:url("../data/bg.webp") center/cover;
height:300px;
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.treatments-hero .overlay{
background:rgba(15,76,129,0.85);
width:100%;
height:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
color:#fff;
text-align:center;
}

.treatments-hero h1{
font-size:40px;
margin-bottom:10px;
}

/* GRID */

.treatments-section{
padding:100px 0;
background:#f8fbff;
}

.treatments-container{
width:90%;
max-width:1200px;
margin:auto;
}

.treatments-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* CARD */

.treatment-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
transition:0.4s;
}

.treatment-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

/* IMAGE */

.treatment-img{
height:250px;
overflow:hidden;
}

.treatment-img img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

.treatment-card:hover img{
transform:scale(1.1);
}

/* CONTENT */

.treatment-content{
padding:25px;
}

.treatment-content h3{
color:#0f4c81;
margin-bottom:10px;
}

.treatment-content p{
color:#666;
font-size:14px;
margin-bottom:15px;
}

/* BUTTON */

.treatment-content a{
display:inline-block;
padding:10px 20px;
background:#1fb6a6;
color:#fff;
border-radius:30px;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.treatment-content a:hover{
background:#0f4c81;
}

/* RESPONSIVE */

@media(max-width:900px){

.treatments-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.treatments-grid{
grid-template-columns:1fr;
}

.treatments-hero h1{
font-size:28px;
}

}
