/* 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: #1a1a1a;
    background-color: #fefefe;
}

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

a {
    color: #2c5f7f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3f5f;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    text-align: center;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cookie {
    background-color: #2c5f7f;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #1a3f5f;
}

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

.btn-cookie-alt:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c5f7f;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

/* Editorial Content Container */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Hero Story Section */
.hero-story {
    margin-bottom: 50px;
}

.hero-text-narrow {
    margin-bottom: 40px;
}

.hero-text-narrow h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

/* Inline Visuals */
.inline-visual,
.inline-visual-offset {
    margin: 50px 0;
}

.inline-visual img {
    width: 100%;
    border-radius: 3px;
}

.inline-visual-offset {
    margin-left: -30px;
    margin-right: -30px;
}

.inline-visual-offset img {
    width: 100%;
}

.inline-visual-offset figcaption {
    font-size: 14px;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 10px;
    padding: 0 30px;
}

/* Story Blocks */
.story-block {
    margin-bottom: 40px;
}

.story-block h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-block h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
    color: #2c2c2c;
}

.story-block p {
    margin-bottom: 20px;
}

.story-block ul,
.content-list {
    margin-bottom: 20px;
    margin-left: 25px;
}

.story-block li,
.content-list li {
    margin-bottom: 10px;
}

.story-block strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* Inline CTA */
.inline-cta-soft {
    background-color: #f5f8fa;
    padding: 30px;
    margin: 50px 0;
    border-left: 4px solid #2c5f7f;
    border-radius: 3px;
}

.inline-cta-soft p {
    margin: 0;
    font-size: 19px;
}

.link-arrow {
    color: #2c5f7f;
    font-weight: 600;
    text-decoration: underline;
}

.link-arrow:hover {
    color: #1a3f5f;
}

/* Services Cards - Editorial Style */
.services-cards-editorial {
    margin: 50px 0;
}

.service-card-editorial {
    background-color: #fafafa;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    position: relative;
}

.service-card-editorial.featured {
    background-color: #f5f8fa;
    border: 2px solid #2c5f7f;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: #2c5f7f;
    color: #ffffff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

.service-card-editorial h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-editorial p {
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-includes {
    list-style: none;
    margin: 20px 0;
}

.service-includes li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: #4a4a4a;
}

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

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #d5d5d5;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7f;
}

.duration {
    font-size: 14px;
    color: #6a6a6a;
    font-style: italic;
}

.btn-service {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background-color: #2c5f7f;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-service:hover {
    background-color: #1a3f5f;
}

/* CTA Inline Block */
.cta-inline-block {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.cta-inline-block h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Form Container - Editorial */
.form-container-editorial {
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-primary {
    padding: 15px 40px;
    background-color: #2c5f7f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary:hover {
    background-color: #1a3f5f;
}

/* Testimonials */
.testimonial-inline {
    margin: 50px 0;
    padding: 40px;
    background-color: #f5f8fa;
    border-left: 5px solid #2c5f7f;
    border-radius: 3px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #6a6a6a;
    font-style: normal;
    font-weight: 600;
}

/* Sticky CTA */
.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5f7f;
    padding: 15px 20px;
    z-index: 999;
    display: none;
}

.cta-sticky.visible {
    display: block;
}

.sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.btn-sticky {
    padding: 12px 30px;
    background-color: #ffffff;
    color: #2c5f7f;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-sticky:hover {
    background-color: #f0f0f0;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #e0e0e0;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #4a4a4a;
    text-align: center;
}

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

/* Contact Info Block */
.contact-info-block {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail {
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #2c5f7f;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.contact-detail p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.contact-detail a {
    color: #2c5f7f;
    font-weight: 600;
}

/* Legal Content */
.legal-content {
    max-width: 100%;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 25px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f7f;
    color: #ffffff;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.service-summary {
    background-color: #f5f8fa;
    padding: 25px;
    border-radius: 4px;
    margin-top: 20px;
}

.service-summary p {
    margin: 0;
    font-size: 18px;
}

#service-name {
    font-weight: 700;
    color: #2c5f7f;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px 30px;
        border-bottom: 1px solid #e0e0e0;
        gap: 20px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-text-narrow h1 {
        font-size: 32px;
    }

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

    .story-block h2 {
        font-size: 26px;
    }

    .service-card-editorial h3 {
        font-size: 22px;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .sticky-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

    .inline-visual-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .editorial-content {
        padding: 40px 20px;
    }

    .form-container-editorial {
        padding: 30px 20px;
    }
}

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-info-block {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-detail {
        flex: 1;
        min-width: 250px;
    }
}

@media (min-width: 1024px) {
    .editorial-content {
        padding: 80px 30px;
    }

    .hero-text-narrow h1 {
        font-size: 48px;
    }
}

/* Content Narrow */
.content-narrow {
    max-width: 100%;
}