/* 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: #2c2c2c;
    background-color: #fafafa;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0f0f0;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid #ddd;
}

/* Navigation - Editorial Style */
.editorial-nav {
    background-color: #fff;
    border-bottom: 2px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

/* Main Editorial Content */
.editorial-main {
    background-color: #fff;
    min-height: 100vh;
}

.story-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* Story Header */
.story-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* Story Sections */
.story-section {
    margin-bottom: 3rem;
}

.story-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.story-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c2c2c;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-section ul,
.story-section ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.story-section li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

/* Images - Editorial Style */
.story-image {
    margin: 3rem 0;
}

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

.story-image-inline {
    margin: 2.5rem 0;
}

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

/* Insight Boxes */
.insight-box {
    background-color: #f8f8f8;
    border-left: 4px solid #2c2c2c;
    padding: 1.5rem;
    margin: 2rem 0;
}

.insight-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.insight-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Testimonials - Inline Style */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

/* Principles List */
.principles-list {
    list-style: none;
    margin-left: 0;
}

.principles-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.principles-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #666;
}

/* Services Showcase */
.services-showcase {
    margin: 4rem 0;
}

.services-showcase h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.service-card {
    background-color: #f9f9f9;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
}

.service-card-detailed {
    background-color: #fff;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 2px solid #e0e0e0;
}

.service-card-detailed h2 {
    margin-top: 0;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1rem 0 1.5rem;
    font-family: 'Arial', sans-serif;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.service-benefits {
    margin: 1.5rem 0;
    list-style: none;
}

.service-benefits li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

/* CTAs - Editorial Inline Style */
.inline-cta {
    background-color: #2c2c2c;
    color: #fff;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.inline-cta h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cta-link {
    display: inline-block;
    background-color: #fff;
    color: #2c2c2c;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #f0f0f0;
}

.inline-cta-secondary {
    border: 2px solid #2c2c2c;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.inline-cta-secondary p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #2c2c2c;
    color: #fff;
}

.final-cta {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.final-cta h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #ddd;
    margin-bottom: 2rem;
}

.cta-button-primary {
    display: inline-block;
    background-color: #fff;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.cta-button-primary:hover {
    background-color: #f0f0f0;
}

/* Buttons */
.select-service {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.select-service:hover {
    background-color: #1a1a1a;
}

.submit-button {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1a1a1a;
}

/* Forms */
.contact-form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.contact-form-section h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-form-section p {
    margin-bottom: 2rem;
}

.editorial-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ccc;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    background-color: #fff;
}

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

.selected-service-display {
    background-color: #e8f4e8;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #2c6b2c;
}

.selected-service-display p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.selected-service-display p:last-child {
    margin-bottom: 0;
}

/* Contact Info */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.contact-detail h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Map Placeholder */
.map-placeholder {
    margin: 3rem 0;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.map-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Thanks Page */
.service-confirmation {
    margin: 2rem 0;
}

.service-confirm-box {
    background-color: #e8f4e8;
    padding: 2rem;
    border-left: 4px solid #2c6b2c;
}

.service-confirm-box p {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service-confirm-box p:last-child {
    margin-bottom: 0;
}

.next-steps {
    background-color: #f9f9f9;
    padding: 2.5rem;
    margin: 3rem 0;
}

.next-steps h2 {
    margin-top: 0;
}

.steps-list {
    margin-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.helpful-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.helpful-link {
    display: block;
    padding: 1rem 1.5rem;
    background-color: #f0f0f0;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.helpful-link:hover {
    background-color: #e0e0e0;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-section p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.legal-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Arial', sans-serif;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 0.875rem;
    text-align: left;
}

.cookie-table th {
    background-color: #f0f0f0;
    font-weight: 600;
}

/* Footer */
.story-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #fff;
    color: #2c2c2c;
}

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

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-policy-link {
    color: #fff;
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-policy-link:hover {
    color: #ddd;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .story-header h1 {
        font-size: 2rem;
    }

    .story-lead {
        font-size: 1.1rem;
    }

    .story-section h2 {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

    .story-content {
        padding: 2rem 1.5rem;
    }

    .service-card,
    .service-card-detailed {
        padding: 1.5rem;
    }

    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .inline-cta,
    .final-cta {
        padding: 2rem 1.5rem;
    }

    .contact-info-section {
        gap: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .story-content {
        padding: 2.5rem;
    }
}