* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary: #4CAF50;
--dark: #2c3e50;
--light: #f4f4f4;
--white: #fff;
--gray: #666;
--transition: 0.3s;
}

body {
font-family: 'Open Sans', sans-serif;
line-height: 1.6;
color: var(--dark);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Header */
.header {
background: var(--white);
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 100;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 18px;
font-weight: 700;
color: var(--primary);
margin-left: 10px;
}

.logo a {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: var(--primary);
}

.logo i {
font-size: 28px;
}

.logo-img {
height: 60px;
}

/* Navigation */
.nav {
display: flex;
gap: 25px;
list-style: none;
align-items: center;
}

.nav > li {
list-style: none;
}

.nav a {
color: var(--dark);
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: 0.3s;
padding: 8px 12px;
display: block;
}

.nav a:hover,
.nav a.active {
color: var(--primary);
}

/* Dropdown */
.dropdown {
position: relative;
}

.dropbtn {
display: flex;
align-items: center;
gap: 5px;
cursor: pointer;
}

.dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 0;
background: var(--white);
min-width: 240px;
box-shadow: 0 8px 16px rgba(0,0,0,0.15);
z-index: 1000;
border-radius: 6px;
padding: 8px 0;
margin-top: 8px;
list-style: none;
}

.dropdown-content::before {
content: '';
position: absolute;
top: -8px;
left: 0;
width: 100%;
height: 8px;
background: transparent;
}

.dropdown-content li {
list-style: none;
}

.dropdown-content a {
color: var(--dark);
padding: 12px 16px;
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
transition: 0.3s;
font-size: 14px;
font-weight: 500;
}

.dropdown-content a:hover {
background: #f5f5f5;
color: var(--primary);
padding-left: 20px;
}

.dropdown-content a i {
width: 16px;
color: var(--primary);
font-size: 12px;
}

.dropdown:hover > .dropdown-content {
display: block;
animation: fadeIn 0.2s;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(-5px); }
to { opacity: 1; transform: translateY(0); }
}

.call-btn a {
background: var(--primary);
color: var(--white);
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
margin-right: 20px;
}

.menu-toggle span {
width: 25px;
height: 3px;
background: var(--primary);
}

/* Hero Slider */
.hero-slider {
margin-top: 0;
}

.mySwiper {
width: 100%;
height: 500px;
}

.swiper-slide {
position: relative;
}

.swiper-slide img {
width: 100%;
height: 100%;
object-fit: cover;
}

.slide-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.4);
z-index: 1;
}

.slide-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: var(--white);
z-index: 2;
width: 90%;
}

.slide-content h1 {
font-size: 36px;
margin-bottom: 15px;
}

.slide-content p {
font-size: 18px;
margin-bottom: 25px;
}

.btn {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 12px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
border: none;
cursor: pointer;
transition: 0.3s;
}

.btn:hover {
background: #45a049;
}

.btn-white {
background: var(--white);
color: var(--primary);
border: 2px solid var(--white);
}

.btn-white:hover {
background: transparent;
color: var(--white);
border-color: var(--white);
}

.btn-large {
padding: 18px 40px;
font-size: 18px;
}

.btn-link {
color: var(--primary);
text-decoration: none;
font-weight: 600;
display: inline-block;
transition: var(--transition);
}

.btn-link:hover {
color: #45a049;
transform: translateX(5px);
}

.swiper-pagination-bullet {
background: var(--white);
}

.swiper-pagination-bullet-active {
background: var(--primary);
}

/* Info Section */
.info-section {
background: var(--primary);
padding: 40px 0;
color: var(--white);
}

.info-boxes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
text-align: center;
}

.info-box i {
font-size: 40px;
margin-bottom: 10px;
}

.info-box h3 {
font-size: 18px;
margin-bottom: 10px;
}

.info-box p {
font-size: 15px;
}

.info-box a {
color: var(--white);
text-decoration: none;
font-weight: 600;
}

/* Section Title */
.section-title {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
color: var(--dark);
}

.section-title-white {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
color: var(--white);
}

.section-padding {
padding: 60px 0;
}

/* About Section */
.about-section {
padding: 60px 0;
}

.about-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 40px;
align-items: center;
}

.about-image img {
width: 100%;
border-radius: 8px;
}

.about-text h3 {
font-size: 24px;
margin-bottom: 10px;
}

.degree {
color: var(--primary);
font-weight: 600;
margin-bottom: 15px;
}

.about-text p {
margin-bottom: 15px;
color: var(--gray);
}

.features {
list-style: none;
margin-top: 20px;
}

.features li {
padding: 8px 0;
display: flex;
align-items: center;
gap: 10px;
}

.features i {
color: var(--primary);
font-size: 18px;
}

/* Services Section */
.services-section {
padding: 60px 0;
background: var(--light);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.service-box {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-box i {
font-size: 50px;
color: var(--primary);
margin-bottom: 15px;
}

.service-box h3 {
font-size: 20px;
margin-bottom: 10px;
}

.service-box p {
color: var(--gray);
font-size: 14px;
}

/* Services Detail Page */
.services-detail {
padding: 60px 0;
}

.service-item {
margin-bottom: 60px;
}

.service-content {
display: grid;
grid-template-columns: 150px 1fr;
gap: 40px;
align-items: start;
}

.service-content.reverse {
grid-template-columns: 1fr 150px;
}

.service-content.reverse .service-icon-large {
order: 2;
}

.service-icon-large {
width: 150px;
height: 150px;
background: var(--light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 60px;
color: var(--primary);
}

.service-info h2 {
font-size: 28px;
margin-bottom: 15px;
color: var(--dark);
}

.service-info p {
color: var(--gray);
margin-bottom: 20px;
line-height: 1.8;
}

.service-list {
list-style: none;
}

.service-list li {
padding: 10px 0;
display: flex;
align-items: center;
gap: 10px;
color: var(--dark);
}

.service-list i {
color: var(--primary);
font-size: 14px;
}

/* Service Detail Pages */
.service-detail-page {
padding: 60px 0;
}

.detail-content {
display: grid;
grid-template-columns: 1fr;
gap: 40px;
}

.detail-image {
width: 100%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.detail-image img {
width: 100%;
height: auto;
display: block;
}

.detail-text h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--dark);
}

.detail-text h3 {
font-size: 24px;
margin: 30px 0 15px;
color: var(--dark);
}

.detail-text p {
font-size: 16px;
line-height: 1.8;
color: var(--gray);
margin-bottom: 20px;
}

.detail-list {
list-style: none;
margin: 20px 0;
}

.detail-list li {
padding: 12px 0;
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 16px;
color: var(--dark);
}

.detail-list i {
color: var(--primary);
font-size: 20px;
margin-top: 2px;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin: 30px 0;
}

.benefit-item {
text-align: center;
padding: 25px;
background: var(--light);
border-radius: 10px;
}

.benefit-item i {
font-size: 40px;
color: var(--primary);
margin-bottom: 15px;
}

.benefit-item h4 {
font-size: 18px;
margin-bottom: 10px;
color: var(--dark);
}

.benefit-item p {
font-size: 14px;
color: var(--gray);
margin: 0;
}

.related-services {
padding: 60px 0;
}

.read-more {
display: inline-block;
color: var(--primary);
font-weight: 600;
text-decoration: none;
margin-top: 10px;
transition: 0.3s;
}

.read-more:hover {
color: #45a049;
transform: translateX(5px);
}

/* Appointment Section */
.appointment-section {
padding: 60px 0;
}

.appointment-form {
max-width: 600px;
margin: 0 auto;
background: var(--light);
padding: 40px;
border-radius: 8px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
}

.appointment-form textarea {
resize: vertical;
}

.appointment-form .btn {
width: 100%;
padding: 15px;
font-size: 16px;
}

/* Contact Section */
.contact-section {
padding: 60px 0;
background: var(--light);
}

.contact-boxes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.contact-box {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
}

.contact-box i {
font-size: 40px;
color: var(--primary);
margin-bottom: 15px;
}

.contact-box h3 {
font-size: 18px;
margin-bottom: 10px;
}

.contact-box p {
color: var(--gray);
font-size: 14px;
}

.contact-box a {
color: var(--primary);
text-decoration: none;
font-weight: 600;
}

/* Contact Page */
.contact-full {
padding: 60px 0;
}

.contact-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-details h2 {
font-size: 28px;
margin-bottom: 15px;
}

.contact-details > p {
color: var(--gray);
margin-bottom: 30px;
line-height: 1.8;
}

.contact-info-list {
margin-bottom: 40px;
}

.contact-info-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.contact-info-item i {
font-size: 30px;
color: var(--primary);
margin-top: 5px;
}

.contact-info-item h3 {
font-size: 18px;
margin-bottom: 8px;
}

.contact-info-item p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

.contact-info-item a {
color: var(--primary);
text-decoration: none;
font-weight: 600;
}

.social-links h3 {
font-size: 18px;
margin-bottom: 15px;
}

.contact-form-wrapper {
background: var(--light);
padding: 40px;
border-radius: 8px;
}

.contact-form-wrapper h2 {
font-size: 24px;
margin-bottom: 25px;
}

.contact-form .form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
}

.contact-form textarea {
resize: vertical;
}

.contact-form .btn {
width: 100%;
padding: 15px;
}

.map-section {
padding: 60px 0;
background: var(--light);
}

.map-placeholder {
margin-top: 30px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-appointment {
padding: 60px 0;
text-align: center;
}

.quick-appointment h2 {
font-size: 32px;
margin-bottom: 15px;
}

.quick-appointment p {
font-size: 18px;
color: var(--gray);
margin-bottom: 30px;
}

/* Page Header */
.page-header {
background: var(--primary);
color: var(--white);
padding: 60px 0 40px;
text-align: center;
}

.page-header h1 {
font-size: 36px;
margin-bottom: 10px;
}

.page-header p {
font-size: 16px;
opacity: 0.9;
}

/* About Page */
.approach-section {
padding: 60px 0;
background: var(--light);
}

.approach-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.approach-box {
background: var(--white);
padding: 30px;
border-radius: 8px;
text-align: center;
}

.approach-box i {
font-size: 50px;
color: var(--primary);
margin-bottom: 20px;
}

.approach-box h3 {
font-size: 20px;
margin-bottom: 15px;
}

.approach-box p {
color: var(--gray);
font-size: 14px;
}

.why-section {
padding: 60px 0;
}

.why-list {
list-style: none;
max-width: 800px;
margin: 0 auto;
}

.why-list li {
padding: 15px 0;
border-bottom: 1px solid #e0e0e0;
display: flex;
align-items: center;
gap: 15px;
font-size: 16px;
}

.why-list i {
color: var(--primary);
font-size: 24px;
}

.approach-info {
padding: 60px 0;
background: var(--light);
}

.approach-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
}

.step {
text-align: center;
}

.step-number {
width: 60px;
height: 60px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
margin: 0 auto 20px;
}

.step h3 {
font-size: 20px;
margin-bottom: 10px;
}

.step p {
font-size: 14px;
color: var(--gray);
}

/* Treatments Page */
.treatment-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}

.treatment-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
border-left: 4px solid var(--primary);
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.treatment-card h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(--dark);
display: flex;
align-items: center;
gap: 10px;
}

.treatment-card h3 i {
color: var(--primary);
font-size: 24px;
}

.treatment-card p {
font-size: 14px;
color: var(--gray);
}

.treatment-list-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
padding: 60px 0;
}

.treatment-column h3 {
font-size: 22px;
margin-bottom: 20px;
color: var(--dark);
display: flex;
align-items: center;
gap: 10px;
}

.treatment-column h3 i {
color: var(--primary);
}

.treatment-column ul {
list-style: none;
}

.treatment-column ul li {
padding: 10px 0;
border-bottom: 1px solid #e0e0e0;
color: var(--gray);
}

.wellness-boxes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.wellness-box {
background: var(--white);
padding: 35px 25px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.wellness-box i {
font-size: 50px;
color: var(--primary);
margin-bottom: 20px;
}

.wellness-box h3 {
font-size: 20px;
margin-bottom: 15px;
}

.wellness-box p {
font-size: 14px;
color: var(--gray);
line-height: 1.7;
}

/* Treatments Preview on Homepage */
.treatments-preview {
padding: 60px 0;
background: var(--light);
}

.treatment-highlight {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
margin-top: 30px;
}

.treatment-col h3 {
font-size: 20px;
margin-bottom: 20px;
color: var(--dark);
display: flex;
align-items: center;
gap: 10px;
}

.treatment-col h3 i {
color: var(--primary);
font-size: 24px;
}

.treatment-col ul {
list-style: none;
}

.treatment-col ul li {
padding: 10px 0;
border-bottom: 1px solid #ddd;
color: var(--gray);
font-size: 15px;
}

.treatment-col ul li:last-child {
border-bottom: none;
}

/* Reversed Treatments Section (Green Background) */
.treatments-preview-reversed {
padding: 60px 0;
background: var(--primary);
color: var(--white);
}

.treatments-preview-reversed .treatment-col h3 {
color: var(--white);
}

.treatments-preview-reversed .treatment-col h3 i {
color: var(--white);
}

.treatments-preview-reversed .treatment-col ul li {
border-bottom: 1px solid rgba(255,255,255,0.2);
color: rgba(255,255,255,0.9);
}

.treatments-preview-reversed .treatment-col ul li:last-child {
border-bottom: none;
}

.treatments-preview-reversed .treatment-col ul li a {
color: rgba(255,255,255,0.9);
text-decoration: none;
transition: var(--transition);
}

.treatments-preview-reversed .treatment-col ul li a:hover {
color: var(--white);
font-weight: 600;
}

/* Treatment Cards on Homepage */
.popular-treatments {
padding: 60px 0;
background: var(--light);
}

.treatment-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 40px;
}

.treatment-card-home {
background: var(--white);
padding: 30px;
border-radius: 10px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
transition: var(--transition);
}

.treatment-card-home:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.treatment-card-home i {
font-size: 50px;
color: var(--primary);
margin-bottom: 20px;
}

.treatment-card-home h3 {
font-size: 20px;
margin-bottom: 10px;
color: var(--dark);
}

.treatment-card-home p {
font-size: 14px;
color: var(--gray);
margin-bottom: 15px;
}

/* CTA Sections */
.cta-simple {
background: var(--primary);
padding: 60px 0;
text-align: center;
color: var(--white);
}

.cta-simple h2 {
font-size: 32px;
margin-bottom: 15px;
}

.cta-simple p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.9;
}

.cta-simple .btn {
background: var(--white);
color: var(--primary);
}

.cta-box {
background: var(--light);
padding: 40px;
border-radius: 12px;
text-align: center;
margin-top: 40px;
}

.cta-box h3 {
font-size: 28px;
margin-bottom: 15px;
color: var(--dark);
}

.cta-box p {
font-size: 16px;
color: var(--gray);
margin-bottom: 25px;
}

.cta-box .btn {
margin: 0 10px;
}

/* Footer */
.footer {
background: #1a1a1a;
color: var(--white);
padding: 40px 0 20px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.footer-col h3 {
font-size: 20px;
margin-bottom: 15px;
}

.footer-col h4 {
font-size: 16px;
margin-bottom: 15px;
}

.footer-col p {
font-size: 14px;
line-height: 1.8;
color: #ccc;
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 8px;
}

.footer-col a {
color: #ccc;
text-decoration: none;
transition: 0.3s;
}

.footer-col a:hover {
color: var(--primary);
}

.social {
display: flex;
gap: 10px;
margin-top: 15px;
}

.social a {
width: 35px;
height: 35px;
background: #333;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
text-decoration: none;
}

.social a:hover {
background: var(--primary);
}

.footer-bottom {
border-top: 1px solid #333;
padding-top: 20px;
text-align: center;
}

.footer-bottom p {
font-size: 14px;
color: #999;
}

/* WhatsApp Floating Button */
.whatsapp-float {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: #25D366;
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
z-index: 999;
transition: 0.3s;
text-decoration: none;
}

.whatsapp-float:hover {
transform: scale(1.1);
background: #128C7E;
}

.whatsapp-float i {
line-height: 1;
}

/* ========== RESPONSIVE STYLES ========== */

@media (max-width: 768px) {
/* Navigation */
.nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
height: calc(100vh - 70px);
background: var(--white);
flex-direction: column;
padding: 20px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
transition: 0.3s;
gap: 0;
z-index: 99;
align-items: flex-start;
overflow-y: auto;
}

.nav.active {
left: 0;
}

.nav > li {
width: 100%;
}

.nav a {
width: 100%;
padding: 15px 0;
border-bottom: 1px solid #ddd;
}

.call-btn {
display: none;
}

.menu-toggle {
display: flex;
}

/* Dropdown Mobile */
.dropdown {
width: 100%;
}

.dropbtn {
width: 100%;
justify-content: space-between;
padding: 15px 0;
border-bottom: 1px solid #ddd;
}

.dropdown-content {
position: static;
display: none;
box-shadow: none;
background: #f9f9f9;
min-width: auto;
border-radius: 0;
padding: 0;
margin: 0;
margin-left: 20px;
}

.dropdown-content::before {
display: none;
}

.dropdown.active .dropdown-content {
display: block;
}

.dropdown-content a {
padding: 10px 15px;
font-size: 13px;
border-bottom: 1px solid #e0e0e0;
}

/* Slider */
.mySwiper {
height: 400px;
}

.slide-content h1 {
font-size: 24px;
}

.slide-content p {
font-size: 14px;
}

/* Content */
.about-content {
grid-template-columns: 1fr;
}

.services-grid {
grid-template-columns: 1fr;
}

.appointment-form {
padding: 25px;
}

.page-header h1 {
font-size: 28px;
}

.service-content,
.service-content.reverse {
grid-template-columns: 1fr;
}

.service-icon-large {
width: 100px;
height: 100px;
font-size: 40px;
margin: 0 auto 20px;
}

.treatment-list-section {
grid-template-columns: 1fr;
}

.treatment-highlight {
grid-template-columns: 1fr;
}

.treatment-cards {
grid-template-columns: 1fr;
}

.contact-layout {
grid-template-columns: 1fr;
gap: 40px;
}

.contact-form .form-row {
grid-template-columns: 1fr;
}

.detail-text h2 {
font-size: 26px;
}

.detail-text h3 {
font-size: 20px;
}

.benefits-grid {
grid-template-columns: 1fr;
}

.cta-box {
padding: 30px 20px;
}

.cta-box .btn {
display: block;
margin: 10px 0;
}

.whatsapp-float {
width: 50px;
height: 50px;
font-size: 26px;
bottom: 20px;
right: 20px;
}
}

/* Individual Treatment Pages Styling */
.service-detail {
    padding: 60px 0;
}

.service-detail .service-content {
    max-width: 900px;
    margin: 0 auto;
    display: block;
}

.service-detail .service-content h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 20px;
}

.service-detail .service-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin: 35px 0 15px;
    padding-top: 10px;
}

.service-detail .service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

/* Treatment Info Cards Grid */
.treatment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.info-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 10px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

/* Respiratory, Digestive, Developmental Sections */
.respiratory-sections,
.digestive-sections,
.developmental-sections {
    margin: 40px 0;
}

.respiratory-sections h3,
.digestive-sections h3,
.developmental-sections h3 {
    font-size: 22px;
    color: var(--dark);
    margin: 40px 0 15px;
    padding: 20px 0 10px;
    border-bottom: 2px solid var(--primary);
    scroll-margin-top: 100px;
}

.respiratory-sections h3:first-child,
.digestive-sections h3:first-child,
.developmental-sections h3:first-child {
    margin-top: 20px;
}

/* CTA Section in Treatment Pages */
.service-detail .cta-section {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.service-detail .cta-section h3 {
    font-size: 28px;
    color: var(--dark);
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}

.service-detail .cta-section p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.cta-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Treatment Column Links */
.treatment-column h3 a,
.treatment-card h3 a,
.wellness-box h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.treatment-column h3 a:hover,
.treatment-card h3 a:hover,
.wellness-box h3 a:hover {
    color: var(--primary);
}

.treatment-column ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.treatment-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Responsive for Treatment Pages */
@media (max-width: 768px) {
    .service-detail .service-content {
        padding: 0 20px;
    }
    
    .service-detail .service-content h2 {
        font-size: 26px;
    }
    
    .service-detail .service-content h3 {
        font-size: 20px;
    }
    
    .treatment-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .service-detail .cta-section {
        padding: 30px 20px;
    }
    
    .service-detail .cta-section h3 {
        font-size: 22px;
    }
    
    .cta-button {
        display: block;
        padding: 12px 30px;
    }
}

