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

:root {
    --primary-color: #1a4d2e;
    --accent-color: #4f7942;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border-bottom: 1px solid #ffeaa7;
}

.nav-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-hero {
    margin-bottom: 50px;
    position: relative;
}

.hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--bg-light);
}

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

.hero-text-overlay {
    margin-top: 30px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.lead {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.story-section {
    margin-bottom: 50px;
}

.story-content {
    max-width: 660px;
}

.story-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--text-dark);
    font-weight: 600;
}

.story-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--text-dark);
    font-weight: 600;
}

.story-content h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.story-content li {
    margin-bottom: 10px;
}

.inline-image-block {
    margin: 40px 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    object-fit: cover;
    background-color: var(--bg-light);
}

.image-caption {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

.service-embed {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-cards-inline {
    margin-top: 40px;
}

.service-card-editorial {
    margin-bottom: 36px;
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 14px;
    margin-top: 0;
    color: var(--primary-color);
}

.service-card-editorial p {
    margin-bottom: 16px;
    font-size: 17px;
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cta-inline {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-block;
    text-decoration: none;
}

.cta-inline:hover {
    background-color: var(--accent-color);
}

.cta-text-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.cta-text-link:hover {
    color: var(--accent-color);
}

.cta-section-story {
    margin: 60px 0;
    padding: 40px 0;
}

.form-editorial {
    margin-top: 30px;
}

.service-display {
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: var(--accent-color);
}

.disclaimer-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.disclaimer-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.page-header-simple {
    margin-bottom: 40px;
}

.page-header-simple h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-detail-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

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

.thanks-section {
    padding: 80px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-details {
    margin: 40px 0;
    font-size: 18px;
}

.service-confirmation {
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 4px;
    margin: 30px 0;
    font-size: 18px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.no-link {
    color: var(--text-dark);
    text-decoration: none;
    cursor: default;
}

.footer-minimal {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px;
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.95);
    color: var(--bg-white);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    flex: 1;
    min-width: 300px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background-color: var(--accent-color);
}

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-links {
        gap: 20px;
    }

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

    .lead {
        font-size: 19px;
    }

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

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

    .page-header-simple h1 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 30px;
    }

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

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }

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