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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

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

a:hover {
    color: #134254;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #1a5f7a;
    color: #fff;
}

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a5f7a;
}

/* Editorial Layout - Main Archetype */
.editorial-layout {
    background-color: #fff;
}

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

/* Hero Editorial */
.hero-editorial {
    padding: 5rem 0 4rem;
    background-color: #f5f5f5;
}

.hero-content-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

/* Story Sections */
.story-intro,
.story-section,
.realization,
.philosophy,
.approach,
.team-story,
.results-story,
.story-continues,
.insight-block,
.intro-services,
.contact-intro,
.contact-note {
    padding: 3rem 0;
}

.story-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #333;
}

.story-intro p,
.story-section p,
.realization p,
.philosophy p,
.approach p,
.team-story p,
.results-story p,
.story-continues p,
.insight-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-intro h2,
.story-section h2,
.realization h2,
.philosophy h2,
.approach h2,
.team-story h2,
.results-story h2,
.story-continues h2,
.insight-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

/* Services Editorial */
.services-editorial {
    padding: 4rem 0;
    background-color: #fafafa;
}

.services-editorial h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-item {
    margin-bottom: 3.5rem;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.service-item:first-child {
    border-top: none;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2a2a2a;
}

.service-item p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0;
}

/* Inline CTAs */
.inline-cta {
    display: inline-block;
    color: #1a5f7a;
    font-weight: 600;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

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

/* Testimonials */
.testimonial-inline {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

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

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

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

/* Urgency Section */
.urgency-soft {
    padding: 3rem 0;
    text-align: center;
}

.urgency-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background-color: #fff;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.editorial-form {
    margin-top: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary,
.btn-primary-large,
.btn-service {
    background-color: #1a5f7a;
    color: #fff;
}

.btn-primary:hover,
.btn-primary-large:hover,
.btn-service:hover {
    background-color: #134254;
}

.btn-primary-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
}

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

.btn-secondary:hover {
    background-color: #1a5f7a;
    color: #fff;
}

/* Final Thought / Closing */
.final-thought,
.closing-thought {
    padding: 4rem 0;
    text-align: center;
    background-color: #f9f9f9;
}

.closing-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #333;
    font-weight: 500;
}

/* CTA Sections */
.cta-about,
.cta-services {
    padding: 3rem 0;
    text-align: center;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Page Header */
.page-header {
    padding: 4rem 0 3rem;
    background-color: #f5f5f5;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Services Page Specific */
.services-detailed {
    padding: 3rem 0;
}

.service-card {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

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

.service-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
    white-space: nowrap;
}

.service-body {
    margin-top: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-body h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2a2a2a;
}

.service-benefits {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.service-benefits li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1.6;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.service-note {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.btn-service {
    margin-top: 1.5rem;
}

/* FAQ */
.services-faq {
    padding: 3rem 0;
    background-color: #fafafa;
}

.services-faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2a2a2a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Contact Page */
.contact-page {
    background-color: #fff;
}

.contact-details {
    padding: 3rem 0;
}

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

.contact-block:last-child {
    border-bottom: none;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2a2a2a;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0.75rem;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.contact-cta {
    padding: 3rem 0;
    text-align: center;
    background-color: #f5f5f5;
}

.contact-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

.note-text {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: #555;
}

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    padding: 4rem 0;
}

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

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

.thanks-message {
    margin: 2rem 0;
}

.thanks-message p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

#serviceConfirmation {
    font-weight: 600;
    color: #1a5f7a;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: decimal;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-cta {
    margin: 3rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-extra {
    padding: 3rem 0;
    background-color: #fafafa;
}

.thanks-extra h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tips-list {
    list-style: none;
    margin-top: 1.5rem;
}

.tips-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
}

.tips-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-size: 1.5rem;
}

/* Legal Pages */
.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2a2a2a;
}

.legal-content {
    padding: 3rem 0;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content strong {
    font-weight: 600;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

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

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

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
    color: #fff;
}

.footer-copy {
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .narrow-content {
        padding: 0 1.5rem;
    }

    .hero-content-narrow h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-tag {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content-narrow h1 {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.875rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }
}