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

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

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

a:hover {
    color: #0d3d52;
}

/* Navigation */
.nav-minimal {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #1a5f7a;
    letter-spacing: 0.5px;
}

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

.nav-menu a {
    color: #2c2c2c;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a5f7a;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-editorial {
    padding: 4rem 2rem 2rem;
}

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

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #555;
    font-style: italic;
    margin-top: 1rem;
}

.hero-image-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
}

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

/* Typography */
.opening-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.content-narrow p {
    margin-bottom: 1.8rem;
    color: #333;
}

.content-narrow h2.section-title-editorial {
    font-size: 2rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

/* Images in Content */
.content-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 3px;
}

.inline-image {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 3px;
}

/* Insight Box */
.insight-box {
    background-color: #f5f5f5;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #1a5f7a;
}

.insight-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c2c2c;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Alternating Background */
.bg-alternate {
    background-color: #fff;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

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

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

.problem-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #d9534f;
    font-size: 1.5rem;
}

/* Quote Section */
.quote-section {
    background-color: #1a5f7a;
    color: #fff;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-section p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #fff;
}

.quote-section cite {
    font-size: 1rem;
    font-style: normal;
    color: #d8e8ed;
}

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

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

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

/* CTA Box Editorial */
.cta-box-editorial {
    background-color: #f8f8f8;
    border: 2px solid #e0e0e0;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
    border-radius: 4px;
}

.cta-box-editorial h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn-cta-primary {
    display: inline-block;
    background-color: #1a5f7a;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-cta-primary:hover {
    background-color: #0d3d52;
    color: #fff;
    transform: translateY(-2px);
}

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

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

.btn-cta-large {
    display: inline-block;
    background-color: #1a5f7a;
    color: #fff;
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #0d3d52;
    color: #fff;
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-inline {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid #1a5f7a;
}

.testimonial-inline p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

/* Service Cards Editorial */
.service-card-editorial {
    background-color: #fff;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.service-card-editorial h2,
.service-card-editorial h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-image {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 3px;
}

.service-features {
    background-color: #f5f5f5;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 3px;
    font-size: 0.95rem;
}

.service-details {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 1.5rem 0;
}

.service-price-reveal {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f8ff;
    border-radius: 4px;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    color: #1a5f7a;
    font-weight: 700;
}

.service-price-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #1a5f7a;
    border-radius: 4px;
    text-align: center;
}

.service-price-box .price-label {
    font-size: 0.9rem;
    color: #d8e8ed;
    margin-bottom: 0.5rem;
}

.service-price-box .price-value {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
}

.btn-select-service {
    display: block;
    width: 100%;
    background-color: #1a5f7a;
    color: #fff;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

/* Urgency Section */
.urgency-section {
    background-color: #fff4e6;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-top: 3px solid #ff9800;
    border-bottom: 3px solid #ff9800;
}

.urgency-section h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.urgency-section p {
    font-size: 1.1rem;
    color: #444;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #e8f5e9;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.guarantee-section h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Final Section */
.final-section {
    margin-top: 4rem;
}

.final-cta {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #1a5f7a;
    margin: 4rem 0 0;
}

/* Forms */
.editorial-form {
    background-color: #fff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: 2rem 0;
}

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

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

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

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

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

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
}

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

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

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

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

.thanks-content {
    text-align: center;
    padding: 3rem 0;
}

.thanks-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.selected-service-info {
    background-color: #f0f8ff;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

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

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

.steps-list {
    list-style: none;
    counter-reset: steps;
    padding-left: 0;
}

.steps-list li {
    counter-increment: steps;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1a5f7a;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.steps-list li strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.steps-list li p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

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

.thanks-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-reminder {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 3rem;
}

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

/* Page Header */
.page-header {
    background-color: #f8f8f8;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

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

.header-intro {
    font-size: 1.3rem;
    color: #555;
    font-style: italic;
}

/* Legal Pages */
.legal-page {
    background-color: #fff;
}

.legal-section {
    margin: 2.5rem 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: #2c2c2c;
    margin: 1.5rem 0 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

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

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

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.footer-section li {
    margin-bottom: 0.6rem;
}

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

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    display: block;
    background-color: #ff9800;
    color: #fff;
    padding: 1rem 2rem;
    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: #f57c00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

.btn-accept {
    background-color: #4caf50;
    color: #fff;
}

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

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

.btn-reject:hover {
    background-color: #fff;
    color: #2c2c2c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

    .opening-text {
        font-size: 1.2rem;
    }

    .content-narrow h2.section-title-editorial {
        font-size: 1.6rem;
    }

    .quote-section p {
        font-size: 1.2rem;
    }

    .service-card-editorial h2,
    .service-card-editorial h3 {
        font-size: 1.5rem;
    }

    .price-value {
        font-size: 1.7rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .btn-cta-secondary {
        width: 100%;
    }

    .steps-list li {
        padding-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .nav-container {
        padding: 1rem 1rem;
    }

    .content-narrow {
        padding: 2rem 1rem;
    }

    .hero-editorial {
        padding: 3rem 1rem 1.5rem;
    }

    .hero-editorial h1 {
        font-size: 1.7rem;
    }

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

    .cta-box-editorial {
        padding: 2rem 1.5rem;
    }
}