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

:root {
    --primary-color: #2d5016;
    --secondary-color: #7fa650;
    --accent-color: #c8773e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-cream: #fef8f1;
    --border-color: #e0d7cc;
}

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

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

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

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

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

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

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

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: normal;
}

.hero-editorial .subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

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

.article-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: normal;
    color: var(--primary-color);
}

.article-section h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    font-weight: normal;
    color: var(--text-dark);
}

.article-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.article-section .lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.inline-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 50px 0;
    border-radius: 4px;
}

.inline-image-small {
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    display: block;
}

.story-highlight {
    background: var(--bg-cream);
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid var(--accent-color);
}

.story-highlight p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.inline-cta {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    display: inline-block;
    margin: 30px 0;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background 0.3s;
}

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

.inline-cta-secondary {
    background: var(--accent-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    display: inline-block;
    margin: 30px 0;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background 0.3s;
}

.inline-cta-secondary:hover {
    background: #a66532;
}

.text-cta {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.services-list {
    margin: 50px 0;
}

.service-card {
    background: var(--bg-light);
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.service-card .price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.service-card .select-service {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.service-card .select-service:hover {
    background: var(--primary-color);
}

.service-card.selected {
    border: 3px solid var(--secondary-color);
    background: #f0f7e8;
}

.testimonial-section {
    background: var(--bg-cream);
    padding: 60px 20px;
    margin: 60px 0;
}

.testimonial {
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 30px;
    background: white;
    border-left: 3px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial .author {
    font-style: normal;
    font-weight: bold;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.form-container p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    background: white;
}

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

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 90;
}

.sticky-cta a {
    background: white;
    color: var(--accent-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    display: inline-block;
    transition: transform 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

.urgency-banner {
    background: #fff4e6;
    border: 2px solid var(--accent-color);
    padding: 25px;
    text-align: center;
    margin: 40px 0;
    border-radius: 4px;
}

.urgency-banner p {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: bold;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px 0;
    gap: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-item .number {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 1rem;
    color: var(--text-light);
}

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

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 25px;
    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;
    margin: 0;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s;
}

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

.cookie-reject {
    background: #666;
    color: white;
}

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

.page-hero {
    background: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: normal;
}

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

.content-card {
    background: var(--bg-light);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.contact-info {
    background: var(--bg-cream);
    padding: 40px;
    margin: 40px 0;
    border-radius: 4px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

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

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-section p {
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
    padding: 60px 20px;
}

.thanks-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thanks-container p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.thanks-container .highlight {
    background: var(--bg-cream);
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }

    nav ul.show {
        display: flex;
    }

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

    .hero-editorial .subtitle {
        font-size: 1.1rem;
    }

    .article-section h2 {
        font-size: 1.8rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .stats-section {
        flex-direction: column;
    }

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