* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.header-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.editorial-hero {
    padding: 80px 0 60px;
    background-color: #fff;
}

.display-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 48px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 48px 0;
    object-fit: cover;
    background-color: #f5f5f5;
}

.editorial-section {
    padding: 60px 0;
    background-color: #fff;
}

.editorial-section:nth-child(even) {
    background-color: #fafafa;
}

.editorial-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.3;
}

.editorial-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.service-inline {
    margin: 56px 0;
    padding: 32px;
    background-color: #f9f9f9;
    border-left: 3px solid #2c5282;
}

.service-inline h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-inline p {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 12px;
}

.price-inline {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin: 20px 0 16px;
}

.cta-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c5282;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.2s;
}

.cta-inline:hover {
    background-color: #1e3a5f;
}

.visual-break {
    margin: 0;
    padding: 0;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.testimonial-section {
    padding: 80px 0;
    background-color: #2c5282;
    color: #fff;
}

.testimonial-section blockquote {
    border-left: none;
    padding: 0;
}

.testimonial-section p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-section cite {
    font-size: 16px;
    font-style: normal;
    color: #d0d0d0;
}

.contact-form {
    margin: 48px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: #fff;
}

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

.btn-primary {
    padding: 14px 36px;
    background-color: #2c5282;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #1e3a5f;
}

.disclaimer-section {
    padding: 48px 0;
    background-color: #f5f5f5;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand strong {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: #999;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-note {
    font-size: 14px;
    color: #888;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 24px;
    display: none;
    z-index: 1000;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept {
    background-color: #2c5282;
    color: #fff;
}

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

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 16px;
}

.thanks-content .btn-primary {
    margin-top: 32px;
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 768px) {
    .display-title {
        font-size: 36px;
    }

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

    .editorial-section h2 {
        font-size: 28px;
    }

    .service-inline {
        padding: 24px;
        margin: 40px 0;
    }

    .contact-form {
        padding: 24px;
    }

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

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

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