/* Reset & 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: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: #1a3a5c;
}

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

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

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

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

p {
    margin-bottom: 1.25rem;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f0f0f;
}

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

.nav-menu a {
    color: #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #2c5f8d;
}

/* Editorial Article Layout - Main Container */
.editorial-article {
    max-width: 100%;
}

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

/* Hero Section */
.article-hero {
    padding: 4rem 0 3rem;
    background-color: #fafafa;
}

.hero-text-centered {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

/* Story Sections */
.story-intro {
    padding: 4rem 0;
}

.story-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

/* Content with Images - Split Layout */
.content-with-image-left,
.content-with-image-right {
    padding: 3rem 0;
}

.content-flex {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.content-with-image-left .text-block {
    flex: 1 1 400px;
}

.content-with-image-left .image-block {
    flex: 1 1 300px;
}

.content-with-image-right .content-flex {
    flex-direction: row-reverse;
}

.content-with-image-right .text-block {
    flex: 1 1 400px;
}

.content-with-image-right .image-block {
    flex: 1 1 300px;
}

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

.custom-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

/* Inline CTAs */
.cta-inline {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.cta-link-inline {
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #2c5f8d;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid #2c5f8d;
}

.cta-link-inline:hover {
    color: #1a3a5c;
    border-bottom-color: #1a3a5c;
}

/* Problem Amplification */
.problem-amplification {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.scenario-list {
    margin-top: 2rem;
}

.scenario-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2c5f8d;
}

.scenario-item h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

/* Insight Section */
.insight-reveal {
    padding: 4rem 0;
}

.insight-lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 1.5rem;
}

.insight-image {
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* CTA Blocks */
.cta-block-centered,
.cta-block-alt {
    text-align: center;
    padding: 3rem 1.5rem;
    margin: 3rem 0;
}

.cta-block-centered {
    background-color: #2c5f8d;
    color: #ffffff;
}

.cta-block-centered h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-block-alt {
    background-color: #f9f9f9;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-cta-primary {
    background-color: #2c5f8d;
    color: #ffffff;
}

.btn-cta-primary:hover {
    background-color: #1a3a5c;
    color: #ffffff;
}

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

.btn-cta-secondary:hover {
    background-color: #2c5f8d;
    color: #ffffff;
}

/* Trust Building & Testimonials */
.trust-building {
    padding: 4rem 0;
    background-color: #fafafa;
}

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #d4a373;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: #2a2a2a;
}

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

/* Service Cards */
.benefits-reveal {
    padding: 4rem 0;
    background-color: #ffffff;
}

.section-intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 3rem;
    text-align: center;
}

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

.service-card {
    flex: 1 1 320px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border-color: #2c5f8d;
    border-width: 3px;
}

.service-card.urgent-service {
    border-color: #c85a5a;
    border-width: 3px;
}

.badge-popular,
.badge-urgent {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.badge-urgent {
    background-color: #c85a5a;
}

.service-card h3 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

.service-description {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.9rem;
}

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

.service-duration {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

/* Urgency Section */
.urgency-section {
    padding: 3rem 0;
    background-color: #fff8f0;
}

/* Testimonial Grid */
.final-testimonials {
    padding: 4rem 0;
    background-color: #fafafa;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 1.5rem;
    border-left: 3px solid #d4a373;
}

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

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

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

.form-intro {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.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: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    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: #2c5f8d;
}

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

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

/* Closing Statement */
.closing-statement {
    padding: 4rem 0;
    text-align: center;
    background-color: #0f0f0f;
    color: #ffffff;
}

.closing-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    padding: 0 1.5rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.footer-links a {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-button {
    display: block;
    padding: 1rem 1.5rem;
    background-color: #2c5f8d;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #1a3a5c;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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 {
    margin: 0;
    flex: 1 1 300px;
    font-size: 0.95rem;
}

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

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

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

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

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

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

/* Page Content */
.page-content {
    min-height: 60vh;
}

.page-hero {
    padding: 3rem 0 2rem;
    background-color: #fafafa;
}

.page-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-top: 1rem;
}

/* About Page */
.about-story {
    padding: 3rem 0;
}

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

.cta-inline-about {
    text-align: center;
    margin: 2.5rem 0;
}

.team-values {
    padding: 3rem 0;
    background-color: #fafafa;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1 1 250px;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-item p {
    font-size: 0.95rem;
    color: #444;
}

.about-cta {
    padding: 3rem 0;
    text-align: center;
}

/* Services Page */
.services-page {
    background-color: #ffffff;
}

.services-intro {
    padding: 3rem 0;
}

.services-catalog {
    padding: 3rem 0;
}

.services-comparison {
    padding: 4rem 0;
    background-color: #fafafa;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.comparison-table td {
    font-size: 0.95rem;
}

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

.contact-info-section {
    padding: 3rem 0;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info-block {
    flex: 1 1 300px;
}

.contact-detail {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.approach-steps {
    margin-top: 2rem;
}

.approach-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c5f8d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.step-content p {
    margin-bottom: 0;
    color: #444;
}

.contact-faq {
    padding: 3rem 0;
    background-color: #fafafa;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid #2c5f8d;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.faq-item p {
    margin-bottom: 0;
    color: #444;
}

.contact-cta {
    padding: 3rem 0;
    text-align: center;
}

.email-link {
    font-weight: 600;
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

.thanks-message {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

.service-info-box {
    background-color: #f5f5f5;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    display: none;
}

.service-info-box h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #666;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.service-price-confirm {
    font-size: 1.1rem;
    color: #2c5f8d;
    font-weight: 600;
}

.thanks-next-steps {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-back-home,
.btn-view-services {
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.btn-back-home {
    background-color: #2c5f8d;
    color: #ffffff;
}

.btn-back-home:hover {
    background-color: #1a3a5c;
    color: #ffffff;
}

.btn-view-services {
    background-color: transparent;
    color: #2c5f8d;
    border: 2px solid #2c5f8d;
}

.btn-view-services:hover {
    background-color: #2c5f8d;
    color: #ffffff;
}

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

.legal-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .nav-menu {
        gap: 1rem;
    }

    .content-flex {
        gap: 2rem;
    }

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

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

    .testimonial-grid {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-cta-button {
        width: 100%;
        text-align: center;
    }

    .values-list {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .approach-step {
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

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

    .btn-back-home,
    .btn-view-services {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        justify-content: center;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
