/* 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;
    overflow-x: hidden;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #2d5a3d;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a472a;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Editorial Main Container */
.editorial-main {
    background-color: #fafafa;
    padding: 3rem 0;
}

.story-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
    background-color: #ffffff;
}

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

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #495057;
    font-weight: 400;
}

.thanks-header {
    text-align: center;
}

/* Story Images */
.story-image {
    margin: 2.5rem 0;
    width: 100%;
}

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

.inline-image {
    margin: 2rem 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

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

.story-section h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.story-section h3 {
    font-size: 1.35rem;
    line-height: 1.4;
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.highlight-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #1a472a;
    margin: 2.5rem 0;
}

/* Service Lists */
.service-list {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-list li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonial {
    border-left: 3px solid #1a472a;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #6c757d;
    font-style: normal;
}

/* Service Cards */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    border: 1px solid #dee2e6;
    padding: 1.75rem;
    border-radius: 4px;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

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

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
    margin: 1rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.price-highlight {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a472a;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.select-service {
    background-color: #1a472a;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.select-service:hover {
    background-color: #2d5a3d;
    transform: translateY(-1px);
}

.select-service:active {
    transform: translateY(0);
}

/* CTAs */
.inline-cta {
    margin: 2rem 0;
    text-align: center;
}

.cta-link {
    color: #1a472a;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 2px solid #1a472a;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: inherit;
}

.cta-link:hover {
    color: #2d5a3d;
    border-color: #2d5a3d;
}

.section-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #1a472a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #2d5a3d;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Forms */
.contact-form {
    margin: 2rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a472a;
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-group a {
    color: #1a472a;
    text-decoration: underline;
}

.submit-button {
    background-color: #1a472a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #2d5a3d;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Process Steps */
.process-step {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #e9ecef;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #1a472a;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 1rem;
}

/* FAQ */
.faq-item {
    margin: 2rem 0;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #1a472a;
    margin-bottom: 0.75rem;
}

/* Contact Info */
.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.opening-hours {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* Link Grid */
.link-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.info-link {
    display: block;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.info-link:hover {
    background-color: #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-link h3 {
    color: #1a472a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-link p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Thanks Page Specific */
.selected-service-text {
    font-size: 1.05rem;
}

.service-name-display {
    font-size: 1.3rem;
    color: #1a472a;
    margin: 1rem 0;
}

.thanks-footer-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.thanks-footer-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.final-cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background-color: #1a472a;
    color: #ffffff;
    border-radius: 4px;
}

.final-cta-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-section p {
    color: #e9ecef;
    margin-bottom: 1.5rem;
}

.final-cta-section .cta-button {
    background-color: #ffffff;
    color: #1a472a;
}

.final-cta-section .cta-button:hover {
    background-color: #f8f9fa;
}

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

.legal-content .story-section {
    border-bottom: 1px solid #e9ecef;
}

.cookie-table {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.cookie-table h3 {
    font-size: 1.1rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.cookie-table p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.no-link {
    color: #495057;
    text-decoration: none;
    cursor: default;
}

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

.disclaimer {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.footer-nav a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #1a472a;
}

.copyright {
    text-align: center;
    color: #6c757d;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
}

.cookie-content a {
    color: #a8d5ba;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-accept {
    background-color: #1a472a;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2d5a3d;
    transform: translateY(-1px);
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

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

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

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

    .story-section h3 {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .story-container {
        padding: 0 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .story-header h1 {
        font-size: 1.75rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .price {
        font-size: 1.25rem;
    }
}