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

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

a:hover {
    color: #0d3b4f;
}

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

/* Navigation - Minimal Style for Editorial Archetype */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5f7a;
    letter-spacing: -0.02em;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

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

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

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

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

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

/* Editorial Container - Narrow Centered Content */
.editorial-container {
    background-color: #ffffff;
    min-height: 100vh;
}

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

/* Hero Section - Editorial Style */
.editorial-hero {
    padding: 4rem 0 3rem;
    background-color: #ffffff;
}

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

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #5a5a5a;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.hero-image {
    width: 100%;
    margin-top: 2rem;
    border-radius: 4px;
}

/* Editorial Sections */
.editorial-section {
    padding: 3rem 0;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.editorial-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin: 3rem 0 1.5rem;
    letter-spacing: -0.02em;
}

.editorial-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    color: #2a2a2a;
    margin: 2rem 0 1rem;
}

.editorial-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

/* Content Images - Inline Editorial Style */
.content-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Highlight Boxes */
.highlight-box {
    background-color: #f5f9fa;
    border-left: 4px solid #1a5f7a;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin: 0 0 0.75rem 0;
}

.highlight-box p {
    margin: 0;
    color: #4a4a4a;
}

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

.cta-link {
    font-size: 1.1rem;
    color: #1a5f7a;
    font-weight: 600;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 0.2rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #0d3b4f;
    border-bottom-color: #0d3b4f;
}

/* Testimonials Inline */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    margin: 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
    font-weight: 500;
}

/* Principle List */
.principle-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.principle-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #3a3a3a;
}

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

/* Stats Box */
.stats-box {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.stat-item {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6a6a6a;
    line-height: 1.4;
}

/* Service Cards - Editorial Style */
.service-card-editorial {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    position: relative;
}

.service-card-editorial.featured {
    border-color: #1a5f7a;
    background-color: #f5f9fa;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

.service-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: #8a8a8a;
    margin-bottom: 0.5rem;
}

.service-card-editorial h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0.5rem 0 1rem;
}

.service-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card-editorial h4 {
    font-size: 1.2rem;
    color: #2a2a2a;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.service-card-editorial ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-card-editorial li {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: #3a3a3a;
}

.service-price {
    margin: 2rem 0 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a5f7a;
    line-height: 1;
}

.price-label {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: #8a8a8a;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Urgency Box */
.urgency-box {
    background-color: #fff5e6;
    border: 2px solid #f0ad4e;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.urgency-box h3 {
    color: #d68910;
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
}

.urgency-box p {
    margin: 0;
    color: #5a4a2a;
}

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

.form-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    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;
    min-height: 120px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    font-size: 0.9rem;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Final Thoughts Section */
.final-thoughts {
    padding: 4rem 0;
    background-color: #fafafa;
}

.final-thoughts h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.final-thoughts p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 0 1.5rem;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

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

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-section a {
    color: #d0d0d0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #9a9a9a;
    margin: 0;
}

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

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

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

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    background-color: #f5f9fa;
    border-bottom: 1px solid #e0e0e0;
}

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

.header-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 6px;
    text-align: center;
}

.cta-box h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
}

.cta-box p {
    color: #d0e8f0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a5f7a;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: transparent;
    color: #1a5f7a;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #1a5f7a;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

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

/* Services Page Specific */
.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #0d3b4f;
}

/* Comparison Section */
.comparison-section {
    margin: 4rem 0;
}

.comparison-table {
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background-color: #1a5f7a;
    color: #ffffff;
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
}

.comparison-cell:first-child {
    flex: 2;
    text-align: left;
}

.comparison-row:nth-child(even):not(.comparison-header) {
    background-color: #f9f9f9;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

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

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

.faq-item h4 {
    font-size: 1.2rem;
    color: #1a5f7a;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #4a4a4a;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info-box {
    flex: 1;
    min-width: 280px;
}

.contact-item {
    margin: 2rem 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #1a5f7a;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.contact-item .note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 280px;
}

.map-image {
    width: 100%;
    border-radius: 4px;
    background-color: #e0e0e0;
    min-height: 300px;
}

.map-caption {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-top: 0.75rem;
    text-align: center;
}

.contact-cta {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #f5f9fa;
    border-radius: 6px;
    text-align: center;
}

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

.contact-cta p {
    margin-bottom: 2rem;
}

.additional-info {
    margin: 3rem 0;
}

.info-item {
    margin: 2.5rem 0;
}

.info-item h4 {
    font-size: 1.2rem;
    color: #2a2a2a;
    margin-bottom: 0.75rem;
}

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

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.thanks-info {
    background-color: #f5f9fa;
    padding: 2rem;
    border-radius: 6px;
    margin: 2.5rem 0;
}

.thanks-info h2 {
    font-size: 1.3rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.2rem;
    color: #1a5f7a;
    font-weight: 600;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps ol {
    max-width: 550px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.next-steps li {
    margin: 1rem 0;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #3a3a3a;
}

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

.thanks-contact {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.thanks-contact p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

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

.last-updated {
    font-size: 0.9rem;
    color: #8a8a8a;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 3rem 0 1.5rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #2a2a2a;
    margin: 2rem 0 1rem;
}

.legal-page h4 {
    font-size: 1.1rem;
    color: #3a3a3a;
    margin: 1.5rem 0 0.75rem;
}

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

.legal-page li {
    margin: 0.5rem 0;
    line-height: 1.7;
}

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

.cookie-table thead {
    background-color: #f5f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2a2a2a;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

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

    .editorial-section h2 {
        font-size: 1.7rem;
    }

    .stats-box {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-card-editorial {
        padding: 1.5rem;
    }

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

    .sticky-cta-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .cookie-content {
        flex-direction: column;
    }

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

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

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin: 0.5rem 0;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-bottom: 1px solid #e0e0e0;
    }

    .comparison-cell:first-child {
        font-weight: 600;
        background-color: #f5f9fa;
    }

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

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

    .nav-links {
        width: 100%;
        justify-content: center;
    }

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

    .price-amount {
        font-size: 2.5rem;
    }
}