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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #0d3d6b;
    text-decoration: underline;
}

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

/* Navigation - Editorial Style */
.editorial-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-transform: lowercase;
}

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

.nav-menu a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #1a5490;
    text-decoration: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    transition: 0.3s;
}

/* Editorial Content - Narrow Centered */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 5%;
}

/* Story Header */
.story-header {
    margin-bottom: 3rem;
    text-align: center;
}

.story-meta {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 1rem;
}

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

.story-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.story-image {
    margin: 2rem 0;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.story-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 2.5rem 0 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.story-section p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

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

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

/* Story Quote */
.story-quote {
    border-left: 4px solid #1a5490;
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 2.5rem 0;
    font-size: 1.2rem;
    font-style: italic;
    color: #3a3a3a;
}

.story-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

/* Story Divider */
.story-divider {
    width: 60px;
    height: 3px;
    background: #d0d0d0;
    margin: 3rem auto;
}

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

.cta-link {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #1a5490;
    text-decoration: underline;
    font-weight: 600;
}

.inline-cta-button {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    background: #1a5490;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.inline-cta-button:hover {
    background: #0d3d6b;
    text-decoration: none;
}

/* Image Sections - Left/Right */
.image-right,
.image-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

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

.section-image img {
    border-radius: 4px;
}

/* Insight List */
.insight-list {
    list-style: none;
    margin: 1.5rem 0;
}

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

.insight-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-size: 1.3rem;
}

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

.callout-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.callout-box p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Stat Highlight */
.stat-highlight {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 4px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a5490;
    line-height: 1;
}

.stat-label {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #4a4a4a;
    margin-top: 0.8rem;
    max-width: 400px;
}

/* Services Preview */
.services-preview {
    margin: 4rem 0;
    text-align: center;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-preview > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 6px;
    text-align: left;
    transition: box-shadow 0.3s;
}

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

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

.service-card p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.service-price {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1.2rem 0;
}

.service-link {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #1a5490;
    font-weight: 600;
    text-decoration: underline;
}

.services-cta {
    margin-top: 2.5rem;
}

/* Services Detailed Page */
.services-detailed {
    margin: 3rem 0;
}

.service-detailed {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
    flex: 1;
}

.service-price-large {
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
}

.price-note {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.service-body h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

.service-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-body li {
    margin-bottom: 0.6rem;
}

.cta-button {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    background: #1a5490;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0d3d6b;
    text-decoration: none;
}

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

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

.faq-item p {
    font-size: 1rem;
    color: #4a4a4a;
}

/* Form */
.editorial-form {
    margin: 2.5rem 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    border-radius: 6px;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.form-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

.form-submit {
    font-family: 'Arial', sans-serif;
    background: #1a5490;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #0d3d6b;
}

/* Final CTAs */
.final-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-primary {
    background: #1a5490;
    color: #ffffff;
}

.cta-primary:hover {
    background: #0d3d6b;
    text-decoration: none;
}

.cta-secondary {
    background: transparent;
    color: #1a5490;
    border: 2px solid #1a5490;
}

.cta-secondary:hover {
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
}

/* Contact Page */
.contact-info {
    margin: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1rem;
    color: #4a4a4a;
}

/* About Page */
.client-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.client-type {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 6px;
}

.client-type h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.client-type p {
    font-size: 1rem;
    color: #4a4a4a;
}

/* Thanks Page */
.thanks-header {
    text-align: center;
}

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

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.thanks-link {
    display: block;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    transition: box-shadow 0.3s;
}

.thanks-link:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-decoration: none;
}

.thanks-link h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.thanks-link p {
    font-size: 1rem;
    color: #4a4a4a;
    margin: 0;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
}

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

.legal-table thead {
    background: #f5f5f5;
}

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

.legal-table th {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: #2c2c2c;
}

/* Footer */
.site-footer {
    background: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 5%;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-column h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    font-size: 0.95rem;
    color: #d0d0d0;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 9999;
    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;
}

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

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

.cookie-accept,
.cookie-reject {
    font-family: 'Arial', sans-serif;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #28a745;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #218838;
}

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

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

/* Responsive - Tablet */
@media (min-width: 768px) {
    .image-right {
        flex-direction: row;
    }

    .image-left {
        flex-direction: row-reverse;
    }

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

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

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

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .client-types {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .client-type {
        flex: 1;
        min-width: 280px;
    }

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

    .thanks-link {
        flex: 1;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .editorial-content {
        padding: 2rem 5%;
    }

    .story-header h1 {
        font-size: 2rem;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .final-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary,
    .cta-secondary {
        text-align: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-header {
        flex-direction: column;
    }

    .process-step {
        flex-direction: column;
    }

    .legal-table {
        font-size: 0.85rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.7rem 0.5rem;
    }
}