* {
    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;
}

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

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

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

.hero-editorial {
    margin: 48px 0 64px;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 32px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.hero-content-narrow h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.content-narrative {
    margin-bottom: 80px;
}

.text-column h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 48px 0 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.text-column p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.inline-image-block {
    margin: 48px 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 16px 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    background-color: #f5f5f5;
}

.cta-inline {
    margin: 40px 0;
    padding: 24px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
}

.btn-text-link {
    font-size: 18px;
    color: #2b5a9e;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2b5a9e;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-text-link:hover {
    color: #1a3d6f;
    border-color: #1a3d6f;
}

.services-preview {
    margin: 64px 0;
    padding: 48px 0;
    border-top: 3px solid #1a1a1a;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 19px;
    color: #555;
    margin-bottom: 48px;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 56px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 0;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #2b5a9e;
    margin: 0 24px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #2b5a9e;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #1a3d6f;
}

.contact-form-section {
    background-color: #f9f9f9;
    padding: 40px 32px;
    border: 1px solid #e0e0e0;
    margin-top: 48px;
}

.contact-form-section h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #4a4a4a;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
}

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

.cta-bottom {
    margin: 56px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2b5a9e;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.footer-editorial {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 56px 48px 32px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

.footer-links {
    list-style: none;
}

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

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

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

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 16px;
    padding: 0 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 24px 32px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

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

.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 32px 80px;
}

.page-header {
    margin-bottom: 48px;
    border-bottom: 3px solid #1a1a1a;
    padding-bottom: 24px;
}

.page-header h1 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-section h3 {
    font-size: 22px;
    color: #2c2c2c;
    margin-bottom: 12px;
    margin-top: 24px;
}

.content-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 16px;
}

.content-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-box {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 32px 24px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.service-box .price {
    font-size: 24px;
    font-weight: 700;
    color: #2b5a9e;
    margin-top: 16px;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 32px;
    border: 1px solid #e0e0e0;
    margin-top: 32px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.contact-item strong {
    display: block;
    font-size: 15px;
    color: #666;
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 17px;
    color: #2c2c2c;
}

.thanks-container {
    max-width: 650px;
    margin: 80px auto;
    padding: 64px 40px;
    text-align: center;
    background-color: #fff;
    border: 2px solid #2b5a9e;
}

.thanks-container h1 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.thanks-container .service-name {
    font-weight: 700;
    color: #2b5a9e;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.thanks-container a:hover {
    background-color: #000;
}

@media (max-width: 768px) {
    .nav-editorial {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .editorial-container {
        padding: 0 20px;
    }

    .hero-content-narrow h1 {
        font-size: 32px;
    }

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

    .text-column h2 {
        font-size: 26px;
    }

    .text-column p {
        font-size: 17px;
    }

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

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

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