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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #c19a6b;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --white: #ffffff;
    --accent: #8b7355;
}

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

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

.wide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-editorial {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 400;
}

.hero-editorial .subtitle {
    font-size: 22px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.article-section {
    padding: 60px 0;
}

.article-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-body h2 {
    font-size: 36px;
    margin: 80px 0 24px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--primary-color);
}

.article-body h3 {
    font-size: 28px;
    margin: 60px 0 20px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--text-dark);
}

.article-body p {
    font-size: 19px;
    margin-bottom: 28px;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body .lead {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.inline-image {
    margin: 60px 0;
    width: 100%;
}

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

.inline-image figcaption {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

.highlight-box {
    background: var(--bg-light);
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid var(--secondary-color);
}

.highlight-box p {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 0;
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 48px;
    text-decoration: none;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #143d24;
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 48px;
    text-decoration: none;
    font-size: 17px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid #e5e5e5;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.price-note {
    font-size: 15px;
    color: var(--text-light);
}

.form-section {
    background: var(--bg-light);
    padding: 80px 0;
    margin: 80px 0;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    background: var(--white);
    font-family: inherit;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 32px;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 24px;
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-actions button {
    padding: 12px 24px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

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

.accept-cookies:hover {
    background: #143d24;
}

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

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

.contact-info {
    background: var(--bg-light);
    padding: 60px 40px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-info strong {
    color: var(--primary-color);
}

.thanks-message {
    text-align: center;
    padding: 120px 0;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-message p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 30px;
    margin: 60px 0 24px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin: 40px 0 16px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 40px;
}

.legal-page ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

    .hero-editorial .subtitle {
        font-size: 18px;
    }

    .article-body h2 {
        font-size: 28px;
        margin: 60px 0 20px;
    }

    .article-body h3 {
        font-size: 24px;
        margin: 40px 0 16px;
    }

    .article-body p {
        font-size: 17px;
    }

    .highlight-box {
        padding: 24px;
        margin: 40px 0;
    }

    .service-card {
        padding: 24px;
    }

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

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

    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-actions button {
        flex: 1;
    }
}
