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

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

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

.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.editorial-article {
    background-color: #fff;
}

.article-hero {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background-color: #e8e8e0;
}

.article-hero.small-hero {
    height: 50vh;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #d4d4c8;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero-text-overlay p {
    font-size: 20px;
    font-weight: 300;
}

.article-content {
    padding: 70px 20px;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
    margin-top: 50px;
    line-height: 1.3;
    color: #1a1a1a;
}

.content-narrow h2:first-child {
    margin-top: 0;
}

.content-narrow h3 {
    font-size: 26px;
    font-weight: 500;
    margin-top: 45px;
    margin-bottom: 18px;
    color: #2c2c2c;
}

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

.content-narrow ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-narrow ul li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f9f9f7;
}

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

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

.service-selector-block {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #e0e0d8;
    border-bottom: 1px solid #e0e0d8;
}

.service-selector-block h3 {
    margin-top: 0;
}

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

.service-card-editorial {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e0;
    background-color: #fafaf8;
    overflow: hidden;
}

.card-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e0e0d8;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cta-select {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.cta-select:hover {
    background-color: #1a1a1a;
}

.form-section-editorial {
    margin: 50px 0;
    padding: 40px;
    background-color: #f4f4f0;
    border-left: 4px solid #2c2c2c;
}

.form-section-editorial h3 {
    margin-top: 0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0c8;
    background-color: #fff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.cta-submit {
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.cta-submit:hover {
    background-color: #1a1a1a;
}

.cta-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f7;
    border-left: 3px solid #8a8a7a;
}

.cta-inline p {
    margin-bottom: 0;
}

.cta-link-inline {
    color: #2c2c2c;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cta-link-inline:hover {
    color: #1a1a1a;
}

.disclaimer-section {
    background-color: #f9f9f7;
    padding: 40px 20px;
    border-top: 1px solid #e0e0d8;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #d0d0c8;
    padding: 50px 20px 20px;
}

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

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

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

.footer-section p {
    font-size: 15px;
    color: #b0b0a8;
}

.footer-section a {
    color: #d0d0c8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    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;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

.services-list-editorial {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.service-item-detailed {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e8e8e0;
    padding-bottom: 40px;
}

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

.service-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #e0e0d8;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 0;
    color: #1a1a1a;
}

.service-price {
    font-size: 26px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.service-details p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    font-size: 16px;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    color: #3a3a3a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a5a5a;
    font-weight: 600;
}

.contact-info-block {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f7;
    border-left: 4px solid #2c2c2c;
}

.contact-info-block h3 {
    margin-top: 0;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #2c2c2c;
}

.contact-item span {
    color: #4a4a4a;
}

.legal-page .content-narrow h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page .content-narrow h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-page .content-narrow a {
    color: #2c2c2c;
    text-decoration: underline;
}

.legal-page .content-narrow a:hover {
    color: #1a1a1a;
}

.thanks-content {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-message {
    text-align: center;
    max-width: 600px;
}

.thanks-message h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.thanks-info {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f7;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 18px;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: inherit;
}

.cta-button:not(.secondary) {
    background-color: #2c2c2c;
    color: #fff;
}

.cta-button:not(.secondary):hover {
    background-color: #1a1a1a;
}

.cta-button.secondary {
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.cta-button.secondary:hover {
    background-color: #2c2c2c;
    color: #fff;
}

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

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

    .hero-text-overlay h1 {
        font-size: 36px;
    }

    .hero-text-overlay p {
        font-size: 16px;
    }

    .content-narrow h2 {
        font-size: 28px;
    }

    .content-narrow h3 {
        font-size: 22px;
    }

    .content-narrow p,
    .content-narrow ul li {
        font-size: 16px;
    }

    .article-content {
        padding: 40px 15px;
    }

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

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

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

    .cta-button {
        width: 100%;
    }
}
