/* 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: #ffffff;
}

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

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

a:hover {
    color: #666666;
}

ul {
    list-style-position: inside;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation */
.nav-minimal {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
    flex-direction: column;
    gap: 1.5rem;
}

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

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    padding: 0.5rem 0;
    display: block;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

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

.btn-sticky {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: block;
}

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

/* Editorial Container - Narrow Centered Layout */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.content-narrow {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

/* Hero Editorial */
.hero-editorial {
    padding: 3rem 1.5rem 2rem;
    max-width: 680px;
    margin: 0 auto;
}

.hero-text-narrow {
    margin-bottom: 2rem;
}

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555555;
    font-style: italic;
}

.hero-image {
    margin: 2rem 0;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Drop Cap */
.drop-cap::first-letter {
    font-size: 4rem;
    line-height: 0.8;
    float: left;
    padding-right: 0.5rem;
    padding-top: 0.2rem;
    font-weight: bold;
}

/* Typography */
h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: 2.5rem 0 1.5rem;
    font-weight: normal;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: normal;
}

h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 1.5rem 0 0.75rem;
    font-weight: bold;
}

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

/* Inline CTA */
.inline-cta {
    color: #1a1a1a;
    font-weight: bold;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    display: inline-block;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    border-bottom-color: #666666;
}

/* Image Breaks */
.image-break {
    margin: 3rem 0;
    max-width: 100%;
}

.image-break img {
    width: 100%;
}

.image-break figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
    margin-top: 1rem;
    padding: 0 1.5rem;
}

.content-image {
    margin: 2rem 0;
}

/* Callout Box */
.callout-box {
    background-color: #f8f8f8;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #1a1a1a;
}

.callout-box p {
    margin-bottom: 0;
}

.callout-box h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.callout-box ul {
    margin-top: 1rem;
}

.callout-box li {
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-inline {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.testimonial-inline blockquote {
    border-left: 4px solid #1a1a1a;
    padding-left: 2rem;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
}

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

.testimonial-grid {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: #f8f8f8;
    padding: 2rem;
    border-left: 3px solid #1a1a1a;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #666666;
}

/* Split Visual */
.split-visual {
    display: flex;
    flex-direction: column;
    margin: 3rem 0;
    gap: 2rem;
}

.split-text {
    padding: 0 1.5rem;
    max-width: 680px;
    margin: 0 auto;
}

.split-image {
    width: 100%;
}

.split-image img {
    width: 100%;
}

.benefit-list {
    margin-top: 1.5rem;
}

.benefit-list li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

/* CTA Blocks */
.cta-block {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 1.5rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-block h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-top: 0;
}

.cta-block p {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.cta-accent {
    background-color: #2c2c2c;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Process Steps */
.process-steps {
    margin: 2rem 0;
}

.step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.step:last-child {
    border-bottom: none;
}

.step h4 {
    margin-top: 0;
    color: #1a1a1a;
}

/* Services Showcase */
.services-showcase {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.service-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.service-image {
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
}

.service-content h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-details {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f8f8f8;
}

.service-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.service-price {
    text-align: center;
    margin-top: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.included-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.included-list li {
    margin-bottom: 0.75rem;
}

.additional-services {
    margin: 2rem 0;
}

.additional-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f8f8;
}

.additional-item h4 {
    margin-top: 0;
}

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

/* Form Section */
.form-section {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.form-container h2 {
    text-align: center;
    margin-top: 0;
}

.form-intro {
    text-align: center;
    color: #666666;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: #f8f8f8;
    padding: 2rem;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cccccc;
    font-size: 1rem;
    font-family: Arial, sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-weight: normal;
    font-size: 0.9rem;
}

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    max-width: 680px;
    margin: 4rem auto 3rem;
    padding: 0 1.5rem;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.2rem;
}

.final-cta-content p {
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Contact Info */
.contact-info-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    background-color: #f8f8f8;
    padding: 2rem;
}

.info-block h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.info-block p {
    margin-bottom: 0.5rem;
}

.info-block p:last-child {
    margin-bottom: 0;
}

.note {
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 1.5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-lead {
    font-size: 1.2rem;
    color: #666666;
}

/* Thanks Page */
.thanks-section {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.thanks-content {
    text-align: center;
    background-color: #f8f8f8;
    padding: 3rem 2rem;
}

.thanks-icon {
    font-size: 4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info {
    text-align: left;
    margin: 2rem 0;
}

.thanks-info h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.next-steps {
    padding-left: 1.5rem;
    text-align: left;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-note {
    background-color: #ffffff;
    padding: 1.5rem;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-top: 3rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.legal-page ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-page li {
    margin-bottom: 0.75rem;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-page th,
.legal-page td {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.legal-page th {
    background-color: #f8f8f8;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #cccccc;
    font-size: 0.95rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        border-bottom: none;
        gap: 2rem;
    }

    .hero-text-narrow h1 {
        font-size: 3.5rem;
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .split-visual {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-image {
        flex: 1;
    }

    .service-item {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .service-image {
        flex: 0 0 300px;
        margin-right: 2rem;
    }

    .service-content {
        flex: 1;
        min-width: 0;
    }

    .service-price {
        flex: 0 0 200px;
        text-align: right;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-text-narrow h1 {
        font-size: 4rem;
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .service-image {
        flex: 0 0 350px;
    }
}