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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #8b4513;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f8f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-warm: #d4a574;
}

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

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.ad-disclosure p {
    font-size: 13px;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.minimal-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    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: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: color 0.3s ease;
}

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

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

.article-hero {
    margin-bottom: 60px;
}

.article-hero.small {
    margin-bottom: 40px;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.article-header-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 30px 0;
}

.article-hero.small .article-header-content {
    padding: 40px 30px 0;
}

.article-header-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.article-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-medium);
    font-style: italic;
}

.article-body {
    padding: 40px 30px 80px;
}

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

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.content-narrow p {
    margin-bottom: 20px;
}

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

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

.inline-image-block {
    margin: 50px 0;
    background-color: var(--bg-light);
    padding: 0;
}

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

.image-caption {
    padding: 20px;
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #234a24;
}

.services-preview {
    margin: 40px 0;
}

.service-card-inline {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.service-card-inline:last-child {
    border-bottom: none;
}

.service-card-inline h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.price-tag {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-warm);
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
}

.testimonial-inline footer {
    margin-top: 15px;
    font-size: 16px;
    color: var(--text-medium);
    font-style: normal;
}

.article-form {
    margin: 50px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

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

.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", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    padding: 14px 36px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: #fff9f0;
    border: 1px solid #e8d5b7;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

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

.service-detail-block h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-content-split {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-description {
    flex: 2;
}

.service-pricing {
    flex: 1;
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 6px;
    text-align: center;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.price-detail {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.contact-info-block {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

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

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.no-link {
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.thanks-content {
    text-align: center;
    padding: 60px 30px;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.service-info {
    margin: 30px 0;
}

.service-selected {
    font-size: 18px;
    color: var(--primary-color);
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 6px;
    display: inline-block;
}

.thanks-content h2 {
    text-align: left;
    font-size: 28px;
    margin-top: 50px;
}

.thanks-content h3 {
    text-align: left;
    font-size: 22px;
}

.thanks-content p {
    text-align: left;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    padding: 14px 28px;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background-color: var(--primary-color);
    color: white;
}

.action-btn.primary:hover {
    background-color: #234a24;
}

.action-btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.action-btn.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.legal-content {
    font-size: 16px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
}

.legal-content h3 {
    font-size: 20px;
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    font-size: 15px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.site-footer {
    background-color: var(--text-dark);
    color: #b0b0b0;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

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

.footer-section a:hover {
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 25px 30px;
    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;
    line-height: 1.5;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cookie-content a {
    color: var(--accent-warm);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #234a24;
}

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

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

@media (max-width: 768px) {
    .article-header-content h1 {
        font-size: 32px;
    }

    .article-lead {
        font-size: 19px;
    }

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

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

    .service-content-split {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 15px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

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