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

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

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

a:hover {
    color: #0d3b4d;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container - Editorial Narrow Width */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Minimal Inline Navigation */
.header-minimal {
    padding: 32px 0;
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
}

.nav-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    transition: color 0.2s ease;
}

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

.ad-disclosure {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

/* Editorial Main */
.editorial-main {
    padding: 60px 0 80px;
}

.article-flow {
    background-color: #ffffff;
}

/* Article Header */
.article-header {
    margin-bottom: 48px;
    text-align: left;
}

.article-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.article-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #5a5a5a;
    font-weight: 400;
    font-style: italic;
}

.thanks-header {
    text-align: center;
    margin-bottom: 56px;
}

/* Article Content - Editorial Story Archetype */
.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 24px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 32px;
    font-weight: 400;
}

.article-content h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 56px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.article-content h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 36px;
    margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.article-content li {
    margin-bottom: 8px;
}

/* Article Images - Inline in Story Flow */
.article-image {
    margin: 48px 0;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

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

.article-image-small {
    margin: 40px auto;
    max-width: 520px;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.article-image-small img {
    width: 100%;
    height: auto;
}

/* Blockquote - Editorial Style */
.article-quote {
    font-size: 26px;
    line-height: 1.5;
    font-style: italic;
    color: #1a1a1a;
    margin: 48px 0;
    padding: 24px 0 24px 32px;
    border-left: 4px solid #1a5f7a;
}

/* Inline CTA - Inside Content */
.inline-cta {
    margin: 56px 0;
    padding: 32px;
    background-color: #f9f9f9;
    border-radius: 6px;
    text-align: center;
}

.cta-text {
    font-size: 20px;
    line-height: 1.5;
    color: #2a2a2a;
    margin-bottom: 16px;
}

.cta-link {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #1a5f7a;
    padding: 14px 32px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #0d3b4d;
    color: #ffffff;
}

/* Testimonial - Inline in Story */
.testimonial-inline {
    margin: 40px 0;
    padding: 28px;
    background-color: #f7f7f7;
    border-left: 3px solid #d0d0d0;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.testimonials-flow {
    margin: 40px 0;
}

.testimonials-flow .testimonial-inline {
    margin-bottom: 24px;
}

/* Services - Editorial Block Style */
.services-editorial {
    margin: 48px 0;
}

.service-block {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-image {
    margin-bottom: 24px;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 16px;
}

.service-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-block p {
    margin-bottom: 16px;
}

.service-duration {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.service-details {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 20px 0;
}

.service-details strong {
    color: #2a2a2a;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f7a;
    margin: 24px 0 20px;
}

.service-select {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #1a5f7a;
    padding: 14px 36px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

/* Form Section */
.form-section {
    margin: 64px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.form-section.hidden {
    display: none;
}

.selected-service-info {
    font-size: 18px;
    color: #2a2a2a;
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: #333;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

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

.form-submit {
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    background-color: #1a5f7a;
    padding: 16px 48px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: block;
    margin: 32px auto 0;
}

.form-submit:hover {
    background-color: #0d3b4d;
}

/* Article Footer - References and Disclaimer */
.article-footer {
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid #e5e5e5;
}

.references {
    margin-bottom: 40px;
}

.references h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 16px;
}

.references ol {
    padding-left: 24px;
}

.references li {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.references a {
    color: #1a5f7a;
    word-break: break-all;
}

.disclaimer {
    padding: 24px;
    background-color: #fff8e1;
    border-left: 4px solid #ffa000;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Contact Info Block */
.contact-info-block {
    margin: 48px 0;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 4px;
}

.contact-item .note {
    font-size: 15px;
    color: #777;
    font-style: italic;
}

/* FAQ Block */
.faq-block {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

/* Thanks Page Specific */
.thanks-content {
    text-align: left;
}

.steps-block {
    margin: 48px 0;
}

.step-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

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

.step-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a5f7a;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.related-link {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a5f7a;
    padding: 12px 20px;
    border: 2px solid #1a5f7a;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.related-link:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

/* Legal Content */
.legal-content {
    font-size: 17px;
}

.legal-content h2 {
    margin-top: 48px;
}

.legal-content h3 {
    margin-top: 28px;
}

.legal-content p {
    margin-bottom: 20px;
}

.values-list {
    margin: 40px 0;
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.browser-guides {
    margin: 32px 0;
}

.browser-item {
    margin-bottom: 20px;
    padding: 16px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.browser-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 6px;
}

.browser-item p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Site Footer */
.site-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 56px 0 32px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 15px;
    color: #b0b0b0;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

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

.cookie-content a {
    color: #6bb6d6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }

    .article-subtitle {
        font-size: 18px;
    }

    .article-content {
        font-size: 17px;
    }

    .lead-text {
        font-size: 19px;
    }

    .article-content h2 {
        font-size: 26px;
        margin-top: 40px;
    }

    .article-content h3 {
        font-size: 21px;
    }

    .article-quote {
        font-size: 22px;
        padding-left: 20px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .ad-disclosure {
        font-size: 11px;
        flex-basis: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .form-section {
        padding: 24px;
    }

    .service-price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 28px;
    }

    .article-subtitle {
        font-size: 16px;
    }

    .container-narrow {
        padding: 0 16px;
    }

    .editorial-main {
        padding: 40px 0 60px;
    }

    .inline-cta {
        padding: 24px 16px;
    }

    .cta-link {
        padding: 12px 24px;
        font-size: 15px;
    }

    .service-select {
        width: 100%;
    }

    .form-submit {
        width: 100%;
        padding: 14px 24px;
    }
}