/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --accent-color: #FF5722;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header Styles */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.header-logo {
    flex-shrink: 0;
}

.logo-img {
    max-height: 60px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 15px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
}

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

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #E64A19;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

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

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

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

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.feature-list {
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Conditions Section */
.conditions-section {
    background: var(--bg-white);
}

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

.condition-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.condition-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.condition-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.condition-item:hover i {
    color: white;
}

.condition-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.condition-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Treatments Section */
.treatments-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.treatments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.treatment-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-white);
    border-radius: 50px;
    box-shadow: var(--shadow);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.treatment-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.treatment-tag i {
    color: var(--primary-color);
    transition: var(--transition);
}

.treatment-tag:hover i {
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 0 20px;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-col a {
    color: #ccc;
}

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

.contact-list li,
.hours-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i,
.hours-list i {
    color: var(--primary-light);
    width: 20px;
}

.hours-list span {
    font-weight: 600;
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-links i {
    color: white;
}

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

.footer-bottom p {
    margin-bottom: 5px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 2rem;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-top i {
    color: white;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .feature-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        gap: 10px;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .treatment-tag {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-list li,
    .hours-list li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Page Header & Breadcrumb */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: white;
    font-weight: 500;
}

/* Content Layout */
.content-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.main-article {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-content {
    padding: 40px;
}

.article-content h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Info Boxes */
.info-box {
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.info-box.highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #2196F3;
}

.info-box.alert {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 4px solid #f44336;
}

.info-box.success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.info-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-box li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Warning Box */
.warning-box {
    background: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 30px 0;
}

.warning-box h4 {
    color: #e65100;
    margin-bottom: 10px;
}

.warning-box h4 i {
    margin-right: 8px;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Timeline */
.timeline {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    overflow-x: auto;
    padding-bottom: 10px;
}

.timeline-item {
    flex: 1;
    min-width: 200px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    border: 2px solid transparent;
}

.timeline-item.active {
    border-color: var(--primary-color);
    background: #e8f5e9;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 auto 15px;
}

.timeline-content h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

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

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Service Details */
.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.detail-card {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.detail-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.detail-card h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.detail-card p {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Causes Grid */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.cause-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cause-card:hover {
    box-shadow: var(--shadow);
}

.cause-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cause-icon i {
    color: white;
    font-size: 1.3rem;
}

.cause-card h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.cause-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Disorder Types */
.disorder-types {
    margin: 30px 0;
}

.type-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.type-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.type-item h4 i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Diagnosis Steps */
.diagnosis-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

/* Treatment Options */
.treatment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.treatment-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.treatment-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.treatment-header i {
    font-size: 1.5rem;
}

.treatment-card ul {
    padding: 20px;
    list-style: none;
}

.treatment-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

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

.treatment-card li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Success Story */
.success-story {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #ffc107;
}

.success-story h3 {
    color: #f57c00;
    margin-bottom: 15px;
}

.success-story h3 i {
    margin-right: 8px;
}

.success-story blockquote {
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    border: none;
}

.success-story cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* Home Tips */
.home-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

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

.tip-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tip-item h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tip-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Risk Factors */
.risk-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.risk-category {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 25px;
}

.risk-category h4 {
    color: #d32f2f;
    margin-bottom: 15px;
}

.risk-category h4 i {
    margin-right: 8px;
}

.risk-category ul {
    list-style: none;
    padding: 0;
}

.risk-category li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.risk-category li::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-size: 0.5rem;
    top: 15px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.highlight-box h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.highlight-box h3 i {
    margin-right: 8px;
}

/* Trimester Tabs */
.trimester-tabs {
    margin: 30px 0;
}

.trimester-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.trimester-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.trimester-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.trimester-header h4 {
    color: var(--text-dark);
    margin: 0;
}

.trimester-header p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.trimester-content {
    padding: 20px;
}

.trimester-content h5 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.trimester-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.trimester-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.trimester-content li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.frequency {
    background: white;
    padding: 15px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

.frequency i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Tests Grid */
.tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.test-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 25px;
}

.test-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.test-icon i {
    color: white;
    font-size: 1.5rem;
}

.test-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.test-card li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
}

.test-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Lifestyle Tips */
.lifestyle-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tip-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 25px;
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.tip-icon i {
    color: white;
    font-size: 1.5rem;
}

.tip-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.tip-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

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

.tip-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
    margin: 30px 0;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 15px;
}

.faq-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.faq-item h4 i {
    margin-right: 8px;
    color: var(--primary-color);
}

.faq-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* Sidebar Widgets */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.sidebar-widget p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

.service-list li {
    margin-bottom: 10px;
}

.service-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: var(--text-dark);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 15px;
}

.service-list a i {
    color: var(--primary-color);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
}

.cta-widget .btn {
    width: 100%;
    justify-content: center;
}

/* Emergency Widget */
.emergency-widget {
    background: #ffebee;
    border: 2px solid #f44336;
}

.emergency-widget h3 {
    color: #d32f2f;
    border-bottom-color: #ffcdd2;
}

.emergency-widget ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.emergency-widget li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #d32f2f;
    font-size: 0.95rem;
}

.emergency-widget li::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 0.4rem;
    top: 10px;
}

.emergency-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #d32f2f;
    color: white;
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
}

.emergency-phone:hover {
    background: #b71c1c;
}

/* Stats Widget */
.stats-widget {
    text-align: center;
}

.stat-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pregnancy Calc Widget */
.pregnancy-calc {
    text-align: center;
}

.pregnancy-calc p {
    font-size: 0.9rem;
}

.pregnancy-calc .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive Content Grid */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .sidebar {
        order: 2;
    }
    
    .timeline {
        flex-direction: column;
    }
    
    .timeline-item {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .features-grid,
    .causes-grid,
    .treatment-options,
    .tests-grid,
    .lifestyle-tips {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        gap: 10px;
    }
    
    .risk-factors {
        grid-template-columns: 1fr;
    }
    
    .trimester-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .whatsapp-float,
    .scroll-top,
    .sidebar {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 40px 0;
    }
}
".btn-randevu { display: inline-flex !important; align-items: center; gap: 8px; text-decoration: none; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: all 0.3s ease; } .btn-randevu:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4); background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important; } .btn-randevu i { font-size: 16px; }" 
