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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a90a4;
    --accent-color: #8bc9d8;
    --text-dark: #333;
    --text-light: #666;
    --background: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

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

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    padding: 1.5rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1,
.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.3rem;
    margin: 0.5rem 0;
    font-weight: 300;
}

/* Sections */
section {
    padding: 5rem 0;
}

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

.about h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.credentials {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0.3rem 0;
}

.insurance {
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.5rem 0 2rem 0;
    font-size: 1.1rem;
}

.welcome-text {
    margin-top: 2.5rem;
    background-color: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.welcome-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.welcome-text p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Methods Section */
.methods {
    background-color: var(--background);
}

.methods h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.methods-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.methods-list li {
    background-color: var(--white);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-radius: 8px;
    font-size: 1.1rem;
}

.methods-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

/* Treatment Page Styles */
.treatment-section {
    background-color: var(--white);
}

.treatment-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.treatment-grid {
    display: grid;
    gap: 2rem;
}

.treatment-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.treatment-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.treatment-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.treatment-footer {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.treatment-footer p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* About Page Styles */
.about-section {
    background-color: var(--white);
}

.about-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--secondary-color);
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.about-section ul {
    list-style: none;
    margin-top: 1rem;
}

.about-section li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background-color: var(--background);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    background-color: var(--background);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-text {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-text p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.emergency {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border-left: 5px solid #ffc107;
    border-radius: 8px;
    font-weight: 500;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--background);
    padding: 1rem;
}

.map-container iframe {
    border-radius: 8px;
}

.map-container small {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
}

.map-container a {
    color: var(--secondary-color);
}

/* Legal Pages */
.legal-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 0;
}

footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero h1,
    .hero h2 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    nav .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}
