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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #e8eef2;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5f7a;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.editorial-hero {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #1a5f7a;
}

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

.hero-subtext {
    font-size: 1.3rem;
    color: #546e7a;
    font-weight: 400;
}

.editorial-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #34495e;
    margin: 2rem 0;
    font-weight: 500;
}

.editorial-content p {
    margin-bottom: 1.5rem;
}

.editorial-content h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin: 3rem 0 1.5rem 0;
    font-weight: 700;
}

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

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.callout-box {
    background: #f0f7fa;
    border-left: 4px solid #1a5f7a;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
}

.callout-box p {
    margin-bottom: 0;
}

.inline-cta {
    background: #e8f4f8;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    text-align: center;
}

.inline-cta p {
    margin: 0;
    font-size: 1.2rem;
}

.text-link {
    color: #1a5f7a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a5f7a;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #0d3d4f;
    border-bottom-color: #0d3d4f;
}

.service-card {
    background: #fafbfc;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
    border: 1px solid #e1e8ed;
}

.service-card h3 {
    margin-top: 0;
    color: #1a5f7a;
}

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

.service-card li {
    margin-bottom: 0.5rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0;
}

.btn-select {
    display: inline-block;
    background: #1a5f7a;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn-select:hover {
    background: #0d3d4f;
}

.form-section {
    background: #f9fafb;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.editorial-form {
    max-width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1dce5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-primary {
    background: #1a5f7a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #0d3d4f;
}

.final-note {
    font-style: italic;
    color: #546e7a;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e8ed;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    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;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

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

.btn-cookie:hover {
    background: #0d3d4f;
}

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

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

.contact-info {
    background: #f9fafb;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: #1a5f7a;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.thanks-message {
    text-align: left;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
}

.policy-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.policy-content ul,
.policy-content ol {
    margin: 1rem 0 1rem 2rem;
}

.policy-content li {
    margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
    .editorial-hero h1 {
        font-size: 2rem;
    }

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

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

    .editorial-content {
        font-size: 1rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

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

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

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

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

    .editorial-container {
        padding: 2rem 1rem;
    }

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

    .price-tag {
        font-size: 1.5rem;
    }
}