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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #3a5a7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a7a9a;
}

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

/* Navigation */
.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #4a4a4a;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Flow Layout */
.editorial-flow {
    max-width: 100%;
    background: #ffffff;
}

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

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

/* Hero Editorial */
.hero-editorial {
    padding: 5rem 0 3rem;
    background: #f9f9f9;
}

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

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Content Images */
.content-image {
    margin: 3rem 0;
}

.content-image img {
    width: 100%;
    border-radius: 4px;
}

/* Lists */
.styled-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.styled-list li {
    margin-bottom: 1rem;
}

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

.cta-link {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3a5a7a;
    border-bottom: 2px solid #3a5a7a;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #2a4a6a;
    border-bottom-color: #2a4a6a;
}

/* Blockquotes */
blockquote.testimonial-inline,
blockquote.testimonial {
    margin: 3rem 0;
    padding: 2rem;
    background: #f5f5f5;
    border-left: 4px solid #3a5a7a;
    font-style: italic;
    font-size: 1.15rem;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
}

/* Sections */
.insight-block {
    background: #f9f9f9;
    padding: 4rem 0;
}

.visual-section {
    padding: 4rem 0;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Services */
.services-preview {
    padding: 5rem 0;
    background: #fafafa;
}

.service-cards {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.service-card p {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.price {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3a5a7a;
    margin: 1.5rem 0;
}

.service-select {
    background: #3a5a7a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-select:hover {
    background: #2a4a6a;
}

/* Services Detail Page */
.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-detail-content {
    flex: 1.5;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.service-intro {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3a5a7a;
    font-weight: bold;
}

.service-ideal {
    font-style: italic;
    color: #6a6a6a;
    margin-top: 1.5rem;
}

.service-price-action {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price-large {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #3a5a7a;
}

.service-select-btn {
    background: #3a5a7a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-select-btn:hover {
    background: #2a4a6a;
}

/* Form Section */
.form-section {
    background: #f9f9f9;
    padding: 5rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3a5a7a;
}

.submit-btn {
    background: #3a5a7a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    width: 100%;
}

.submit-btn:hover {
    background: #2a4a6a;
}

.selected-service-display {
    background: #e8f0f7;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: #ffffff;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: #3a5a7a;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
}

.final-cta p {
    color: #e8f0f7;
    font-size: 1.2rem;
}

.cta-button-large {
    display: inline-block;
    background: #ffffff;
    color: #3a5a7a;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    background: #3a5a7a;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(58, 90, 122, 0.4);
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.sticky-cta-btn:hover {
    background: #2a4a6a;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(58, 90, 122, 0.5);
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 4rem 0 2rem;
}

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

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

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

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

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

.footer-column a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #3a3a3a;
    text-align: center;
    color: #808080;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.cookie-accept {
    background: #3a5a7a;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #2a4a6a;
}

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

.cookie-reject:hover {
    background: #3a3a3a;
}

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

/* Highlight Box */
.highlight-box {
    background: #e8f0f7;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border-left: 4px solid #3a5a7a;
}

.highlight-box h3 {
    margin-top: 0;
}

/* CTA Box */
.cta-box {
    background: #3a5a7a;
    color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: #ffffff;
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #3a5a7a;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 1rem;
    transition: transform 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: #3a5a7a;
    border: 2px solid #3a5a7a;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 1rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.cta-button-secondary:hover {
    background: #3a5a7a;
    color: #ffffff;
}

/* Contact Info */
.contact-info {
    padding: 3rem 0;
}

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

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h2 {
    margin-top: 0;
}

.contact-item a {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-note {
    font-style: italic;
    color: #6a6a6a;
    margin-top: 1rem;
}

.location-image {
    margin: 3rem 0;
}

.location-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-extra {
    margin-top: 3rem;
}

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

.thanks-hero {
    padding: 5rem 0;
}

.thanks-service-box {
    background: #e8f0f7;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.thanks-service-box h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0.5rem 0;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3a5a7a;
    margin: 0.5rem 0;
}

.thanks-details {
    margin-top: 3rem;
}

.timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #3a5a7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.thanks-note {
    background: #fff8e1;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
    margin: 2rem 0;
}

.thanks-actions {
    margin-top: 3rem;
    text-align: center;
}

.thanks-testimonial {
    background: #f9f9f9;
    padding: 4rem 0;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.last-updated {
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .narrow-text,
    .hero-narrow {
        padding: 0 1.5rem;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .service-detail-card {
        flex-direction: column !important;
        padding: 2rem;
    }

    .service-price-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-button-secondary {
        margin-left: 0;
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-links {
        font-size: 0.9rem;
        gap: 1rem;
    }

    h1 {
        font-size: 1.7rem;
    }

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

    .timeline-item {
        gap: 1rem;
    }

    .timeline-marker {
        width: 35px;
        height: 35px;
    }
}