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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

/* Ad Disclosure Banner */
.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 100%;
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    background-color: #34495e;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text-overlay {
    max-width: 720px;
    margin: -80px auto 0;
    padding: 40px 30px;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-text-overlay h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #7f8c8d;
    font-style: italic;
    line-height: 1.5;
}

/* Article Body - Narrow Centered */
.article-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.page-header {
    max-width: 680px;
    margin: 60px auto 40px;
    padding: 0 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 400;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Typography */
.intro-section,
.problem-amplification,
.insight-section,
.story-section,
.trust-building,
.services-reveal,
.about-story,
.philosophy-section,
.team-section,
.method-section,
.values-section,
.final-about-cta,
.service-form-section,
.contact-info-section,
.contact-approach,
.location-section,
.privacy-note-section,
.thanks-section,
.next-steps,
.services-detail,
.legal-section {
    margin-bottom: 50px;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 25px;
    font-weight: 400;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c3e50;
}

.article-body h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 50px 0 25px;
    font-weight: 400;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 35px 0 15px;
    font-weight: 500;
}

.article-body ul,
.article-body ol {
    margin: 25px 0 25px 25px;
    line-height: 1.8;
}

.article-body li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #2c3e50;
}

.article-body strong {
    font-weight: 600;
    color: #2c3e50;
}

/* Inline Images */
.inline-image-wrapper {
    width: 100%;
    margin: 40px 0;
    background-color: #ecf0f1;
    overflow: hidden;
}

.inline-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* CTA Inline */
.cta-inline {
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
    text-align: center;
}

.cta-text-link {
    font-size: 1.15rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
}

.cta-text-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

/* Service Cards */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin: 50px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #ecf0f1;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 25px 25px 15px;
    font-weight: 500;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0 25px 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 25px;
    font-family: 'Arial', sans-serif;
}

.select-service-btn {
    display: block;
    width: calc(100% - 50px);
    margin: 20px 25px 25px;
    padding: 15px 25px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.select-service-btn:active {
    background-color: #2471a3;
}

/* Testimonials */
.testimonial {
    padding: 30px 0;
    border-left: 4px solid #3498db;
    padding-left: 30px;
    margin: 35px 0;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

/* Form Styling */
.final-cta-section {
    margin: 60px 0 0;
    padding: 50px 0;
    border-top: 2px solid #e1e8ed;
}

.service-form {
    margin: 40px 0;
    padding: 35px;
    background-color: #f8f9fa;
    border: 1px solid #e1e8ed;
}

.service-display {
    background-color: #ecf0f1;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
}

.service-display p {
    margin: 0;
    font-size: 1rem;
    color: #2c3e50;
}

.service-display strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #bdc3c7;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #229954;
}

.submit-btn:active {
    background-color: #1e8449;
}

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

/* Service Detail Cards */
.service-detail-card {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e1e8ed;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card h2 {
    margin-top: 25px;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

/* Contact Page Styles */
.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-block {
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-block p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
}

.email-note,
.opening-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Thanks Page */
.thanks-section {
    text-align: center;
    padding: 60px 0;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #27ae60;
}

.service-confirmation {
    margin: 30px 0;
}

.service-selected-box {
    background-color: #e8f8f5;
    padding: 25px;
    border-left: 4px solid #27ae60;
    margin: 25px 0;
}

.service-selected-box p {
    margin: 8px 0;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    align-items: center;
}

.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.cta-button {
    background-color: #3498db;
    color: #ffffff;
}

.cta-button:hover {
    background-color: #2980b9;
}

.cta-button-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #bdc3c7;
}

.cta-button-secondary:hover {
    background-color: #d5dbdb;
}

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
}

.steps-list li {
    margin-bottom: 20px;
    padding-left: 10px;
}

/* Principles List */
.principles-list {
    margin: 30px 0;
}

.principles-list li {
    margin-bottom: 20px;
    padding-left: 15px;
}

/* Legal Pages */
.legal-page .article-body {
    max-width: 800px;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 40px;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 25px;
}

.legal-page p {
    font-size: 1rem;
}

.legal-page ul,
.legal-page ol {
    font-size: 1rem;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 50px auto 30px;
    padding: 25px 30px;
    background-color: #34495e;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-disclaimer p {
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding: 25px 30px 0;
    border-top: 1px solid #34495e;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .article-body h2 {
        font-size: 1.6rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

    .article-body {
        padding: 30px 20px 60px;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .service-cards {
        gap: 35px;
    }

    .thanks-actions {
        width: 100%;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
    }
}