:root {
    --primary: #2D4A3E;
    --secondary: #8B4513;
    --accent: #D4A574;
    --bg-light: #FAF8F5;
    --bg-dark: #2D4A3E;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #6B6B6B;
    --border: #E5E0DA;
    --shadow: rgba(45, 74, 62, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

.container-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

header {
    background: var(--text-light);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: #FFF8E7;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #E8DCC8;
}

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

nav a {
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

nav a:hover {
    border-bottom-color: var(--secondary);
}

.hero-editorial {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, #EDE8E0 100%);
}

.hero-editorial h1 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-image-container {
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border);
    box-shadow: 0 20px 60px var(--shadow);
}

.hero-image-container img {
    width: 100%;
    height: 420px;
    display: block;
}

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

.article-section.alt-bg {
    background: #FFFFFF;
}

.article-section.dark-bg {
    background: var(--bg-dark);
    color: var(--text-light);
}

.article-section.dark-bg h2,
.article-section.dark-bg h3 {
    color: var(--text-light);
}

.article-section.dark-bg p {
    color: rgba(255, 255, 255, 0.9);
}

.inline-image {
    margin: 40px -60px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border);
}

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

.inline-image.float-left {
    float: left;
    width: 45%;
    margin: 10px 30px 20px 0;
}

.inline-image.float-right {
    float: right;
    width: 45%;
    margin: 10px 0 20px 30px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.quote-block {
    border-left: 4px solid var(--accent);
    padding: 20px 30px;
    margin: 40px 0;
    background: rgba(212, 165, 116, 0.1);
    font-style: italic;
    font-size: 1.15rem;
}

.quote-block cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-inline {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-inline:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.cta-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #C49660 100%);
}

.cta-section h2 {
    color: var(--text-light);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 24px;
}

.cta-section .cta-inline {
    background: var(--text-light);
    color: var(--secondary);
}

.cta-section .cta-inline:hover {
    background: var(--bg-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    flex: 1 1 300px;
    background: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 16px 0;
}

.service-card ul {
    list-style: none;
    margin: 16px 0;
}

.service-card li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.testimonial {
    background: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial .role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.form-container {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 40px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-light);
    padding: 20px;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cookie-text a {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: var(--secondary);
}

.cookie-btn.reject {
    background: var(--border);
    color: var(--text-dark);
}

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

.page-header {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #EDE8E0 100%);
    text-align: center;
}

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

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.contact-info {
    background: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow);
    margin: 30px 0;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.contact-info strong {
    min-width: 140px;
    color: var(--primary);
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-box {
    max-width: 600px;
    background: var(--text-light);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 40px var(--shadow);
}

.thanks-box h1 {
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-box p {
    color: var(--text-muted);
}

.about-feature {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.about-feature.reverse {
    flex-direction: row-reverse;
}

.about-feature-text {
    flex: 1 1 300px;
}

.about-feature-image {
    flex: 1 1 300px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--border);
}

.about-feature-image img {
    width: 100%;
    height: 280px;
    display: block;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0;
}

.benefit-item {
    flex: 1 1 280px;
    padding: 24px;
    background: rgba(212, 165, 116, 0.15);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-editorial h1 {
        font-size: 2.2rem;
    }

    .inline-image {
        margin: 30px 0;
    }

    .inline-image.float-left,
    .inline-image.float-right {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

    nav ul {
        gap: 16px;
    }

    .header-inner {
        flex-direction: column;
        text-align: center;
    }

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

    .about-feature {
        flex-direction: column;
    }

    .about-feature.reverse {
        flex-direction: column;
    }
}
