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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Advertorial Label */
.advertorial-label {
    background-color: #c9a882;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.header {
    background-color: #3d5a54;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c9a882;
}

/* Hero Section */
.hero {
    background-color: #f5f5f5;
    padding: 60px 0 40px;
}

.hero-badge {
    display: inline-block;
    background-color: #c9a882;
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 42px;
    color: #2c3e3a;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-date {
    color: #777;
    font-size: 16px;
}

/* Section Styles */
.section {
    padding: 60px 0;
    background-color: #fff;
}

.section-alt {
    background-color: #f9f9f9;
}

.section-title {
    font-size: 36px;
    color: #2c3e3a;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.section-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Content with Image */
.content-with-image {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-image {
    width: 70%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto 30px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.full-width-image {
    width: 70%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto 40px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* General Content Styles for all pages */
.section h1 {
    font-size: 36px;
    color: #2c3e3a;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.section h2 {
    font-size: 28px;
    color: #2c3e3a;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section h3 {
    font-size: 22px;
    color: #3d5a54;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section h4 {
    font-size: 18px;
    color: #3d5a54;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.section ul,
.section ol {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    padding-left: 30px;
}

.section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.section a {
    color: #c9a882;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section a:hover {
    color: #b8956f;
    text-decoration: underline;
}

.section strong {
    color: #2c3e3a;
    font-weight: 600;
}

/* Content Pages Typography */
main.section {
    padding: 60px 0;
}

main.section h1 {
    font-size: 42px;
    color: #2c3e3a;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

main.section h2 {
    font-size: 32px;
    color: #2c3e3a;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

main.section h3 {
    font-size: 24px;
    color: #3d5a54;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

main.section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

main.section ul,
main.section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

main.section ul li,
main.section ol li {
    font-size: 17px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.8;
}

main.section a {
    color: #c9a882;
    text-decoration: none;
    transition: color 0.3s ease;
}

main.section a:hover {
    color: #b8956f;
    text-decoration: underline;
}

main.section strong {
    color: #2c3e3a;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
    color: #3d5a54;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Doctor Introduction */
.doctor-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.doctor-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.doctor-info h3 {
    font-size: 28px;
    color: #2c3e3a;
    margin-bottom: 10px;
    font-weight: 700;
}

.doctor-specialty {
    color: #c9a882;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.doctor-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.doctor-info .cta-button {
    color: #fff;
    background-color: #3d5a54;
    box-shadow: 0 4px 15px rgba(61, 90, 84, 0.4);
}

.doctor-info .cta-button:hover {
    background-color: #2c3e3a;
    box-shadow: 0 6px 20px rgba(44, 62, 58, 0.5);
}

/* Why Consult Grid */
.why-consult-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #c9a882;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.why-card h3 {
    color: #3d5a54;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3d5a54;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: #2c3e3a;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Testimonials */
.testimonials-disclaimer {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #856404;
    border-radius: 4px;
}

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

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #c9a882;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: #3d5a54;
    font-weight: 600;
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3d5a54 0%, #2c3e3a 100%);
    color: #fff;
    text-align: center;
}

.cta-section .section-title {
    color: #fff;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.cta-section .cta-button {
    color: #fff;
    background-color: #c9a882;
    box-shadow: 0 4px 15px rgba(201, 168, 130, 0.5);
}

.cta-section .cta-button:hover {
    background-color: #d4b08f;
    box-shadow: 0 6px 20px rgba(201, 168, 130, 0.6);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #c9a882;
    color: #2c3e3a;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201, 168, 130, 0.3);
}

.cta-button:hover {
    background-color: #b8956f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 130, 0.4);
}

.cta-button-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #2c3e3a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a882;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #2c3e3a;
    color: #f5f5f5;
    padding: 60px 0 30px;
}

/* Footer Imprint Box */
.footer-imprint {
    background-color: #1f2d29;
    border: 2px solid #c9a882;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-imprint p {
    color: #f5f5f5;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-imprint p:last-child {
    margin-bottom: 0;
}

.footer-imprint strong {
    color: #c9a882;
    font-weight: 600;
}

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

.footer-section h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section h4 {
    color: #c9a882;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a882;
}

/* Disclosures */
.disclosures {
    background-color: #1f2d29;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.disclosures h4 {
    color: #c9a882;
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclosure-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #3d5a54;
}

.disclosure-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.disclosure-block h5 {
    color: #c9a882;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.disclosure-block p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3d5a54;
    margin-top: 40px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .doctor-intro {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 20px;
    }

    .benefits-grid,
    .why-consult-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c9a882;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8956f;
}