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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1a5f4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d2f;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28, 28, 28, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 15px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #1a5f4f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0d3d2f;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f4f;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
}

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

/* Editorial Content Layout */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.narrow-column {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Editorial */
.hero-editorial {
    padding: 80px 30px 60px;
    background-color: #fafaf8;
}

.hero-text-center {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.lead-intro {
    font-size: 22px;
    line-height: 1.6;
    color: #555555;
    font-style: italic;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 2px;
}

/* Page Header Editorial */
.page-header-editorial {
    padding: 80px 30px 40px;
    background-color: #fafaf8;
}

.page-header-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 400;
    text-align: center;
}

.page-header-editorial .lead-intro {
    text-align: center;
}

.policy-date {
    text-align: center;
    font-size: 15px;
    color: #888888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 10px;
}

/* Story Section */
.story-section {
    padding: 60px 0;
}

.story-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.story-section p {
    margin-bottom: 24px;
}

.drop-cap::first-letter {
    font-size: 64px;
    line-height: 1;
    float: left;
    margin: 0 10px 0 0;
    color: #1a5f4f;
}

.inline-image {
    margin: 50px 0;
}

.inline-image img {
    width: 100%;
    border-radius: 2px;
}

.inline-image figcaption {
    font-size: 15px;
    color: #888888;
    margin-top: 12px;
    font-style: italic;
}

/* Inline CTA */
.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.link-arrow {
    font-size: 20px;
    color: #1a5f4f;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.link-arrow:hover {
    color: #0d3d2f;
}

/* Visual Break Section */
.visual-break {
    background-color: #f5f5f3;
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 400;
    text-align: center;
}

/* Service Card Editorial */
.service-card-editorial {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
}

.service-card-editorial figure {
    margin-bottom: 30px;
}

.service-card-editorial figure img {
    width: 100%;
    border-radius: 2px;
}

.service-content h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-content p {
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    font-size: 20px;
    color: #1a5f4f;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 20px;
}

.btn-service {
    padding: 14px 32px;
    background-color: #1a5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #0d3d2f;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f7;
    border-left: 4px solid #1a5f4f;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #666666;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Inline CTA Block */
.inline-cta-block {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #1a5f4f;
    border-radius: 4px;
    text-align: center;
}

.inline-cta-block p {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 24px;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a5f4f;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background-color: #fafaf8;
}

.form-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
    text-align: center;
}

.form-section > .narrow-column > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.btn-sticky {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1a5f4f;
    color: #ffffff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #0d3d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer-minimal {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 50px 30px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #cccccc;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-note {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Services Page */
.services-section {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-image {
    margin-bottom: 30px;
}

.service-image img {
    width: 100%;
    border-radius: 2px;
}

.service-detail-content h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 400;
}

.price-large {
    font-size: 24px;
    color: #1a5f4f;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 24px;
    display: block;
}

.service-detail-content h3 {
    font-size: 22px;
    line-height: 1.3;
    margin: 30px 0 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.feature-list {
    margin: 20px 0 20px 30px;
}

.feature-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-note {
    font-size: 16px;
    color: #666666;
    font-style: italic;
    margin: 24px 0;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-info-block {
    margin-bottom: 60px;
}

.contact-info-block h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

.contact-item p {
    margin-bottom: 8px;
}

.contact-note {
    font-size: 16px;
    color: #666666;
    font-style: italic;
    margin-top: 12px;
}

.contact-faq {
    margin-bottom: 60px;
}

.contact-faq h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 400;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 0;
}

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

.thanks-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 40px;
}

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

.service-selected {
    font-size: 18px;
    color: #1a5f4f;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-content h2 {
    font-size: 28px;
    line-height: 1.3;
    margin: 50px 0 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.step-item {
    padding: 30px;
    background-color: #f9f9f7;
    border-radius: 4px;
    text-align: left;
}

.step-item h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1a5f4f;
    font-weight: 500;
}

.step-item p {
    margin-bottom: 0;
}

.thanks-cta {
    margin: 50px 0;
}

.thanks-cta p {
    font-size: 18px;
    margin-bottom: 24px;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: #1a5f4f;
    border: 2px solid #1a5f4f;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a5f4f;
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #1a5f4f;
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0d3d2f;
}

.contact-reminder {
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f7;
    border-radius: 4px;
}

.contact-reminder p {
    margin-bottom: 0;
}

/* Policy Pages */
.policy-section {
    padding: 60px 0;
}

.policy-section h2 {
    font-size: 28px;
    line-height: 1.3;
    margin: 40px 0 20px;
    color: #1a1a1a;
    font-weight: 500;
}

.policy-section h3 {
    font-size: 22px;
    line-height: 1.3;
    margin: 30px 0 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.policy-section p {
    margin-bottom: 20px;
}

.policy-section ul {
    margin: 20px 0 20px 30px;
}

.policy-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 768px) {
    .service-card-editorial {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }

    .service-card-editorial.reverse {
        flex-direction: row-reverse;
    }

    .service-card-editorial figure {
        flex: 0 0 45%;
        margin-bottom: 0;
    }

    .service-content {
        flex: 1;
    }

    .next-steps {
        flex-direction: row;
    }

    .step-item {
        flex: 1;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 17px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid #e8e8e8;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #e8e8e8;
    }

    .nav-links a {
        display: block;
        padding: 16px 30px;
    }

    .hero-text-center h1 {
        font-size: 36px;
    }

    .lead-intro {
        font-size: 19px;
    }

    .page-header-editorial h1 {
        font-size: 36px;
    }

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

    .service-content h3 {
        font-size: 24px;
    }

    .inline-cta-block {
        padding: 40px 30px;
    }

    .inline-cta-block p {
        font-size: 19px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .btn-sticky {
        padding: 14px 24px;
        font-size: 15px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-links {
        flex-direction: column;
    }

    .btn-secondary,
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}