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

:root {
    --primary: #2d5a3d;
    --secondary: #4a7c5e;
    --accent: #d4a574;
    --dark: #1a2f22;
    --light: #f5f8f6;
    --text: #2c3e33;
    --text-light: #6b7d73;
    --border: #d4dfd8;
    --white: #ffffff;
}

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

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

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

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 30px;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

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

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

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

.hero-editorial .byline {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.article-body {
    padding: 40px 0;
}

.article-body p {
    margin-bottom: 25px;
    text-align: justify;
}

.article-body h2 {
    font-size: 36px;
    margin: 50px 0 25px;
    color: var(--dark);
    font-weight: 400;
}

.article-body h3 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: var(--primary);
    font-weight: 400;
}

.article-body ul {
    margin: 25px 0 25px 40px;
}

.article-body li {
    margin-bottom: 12px;
}

.inline-image {
    margin: 50px 0;
    text-align: center;
}

.inline-image img {
    width: 100%;
    max-width: 680px;
    height: auto;
    border-radius: 4px;
}

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

.pullquote {
    margin: 50px 0;
    padding: 30px 40px;
    border-left: 4px solid var(--accent);
    background: var(--light);
    font-size: 24px;
    font-style: italic;
    color: var(--primary);
}

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

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

.cta-block {
    margin: 60px 0;
    padding: 50px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border-radius: 4px;
}

.cta-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--white);
}

.cta-block p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.service-card {
    padding: 35px;
    background: var(--light);
    border-left: 4px solid var(--secondary);
    transition: all 0.3s;
}

.service-card:hover {
    border-left-color: var(--accent);
    transform: translateX(5px);
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text);
    margin-bottom: 20px;
}

.service-card .price {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card .price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial {
    margin: 50px 0;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: var(--text-light);
}

.form-section {
    margin: 60px 0;
    padding: 50px;
    background: var(--light);
    border-radius: 4px;
}

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

.contact-form {
    max-width: 540px;
    margin: 0 auto;
}

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

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

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

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

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

.stats-section {
    margin: 60px 0;
    padding: 50px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: var(--light);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 18px 35px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 99;
}

.sticky-cta:hover {
    background: var(--primary);
    transform: scale(1.05);
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section a {
    color: var(--light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    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-text {
    flex: 1;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
}

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

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

.cookie-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.cookie-reject:hover {
    background: var(--white);
    color: var(--dark);
}

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

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

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

.thanks-content {
    max-width: 600px;
}

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

.thanks-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text);
}

.thanks-content .checkmark {
    font-size: 80px;
    color: var(--accent);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        border-bottom: 1px solid var(--border);
        transition: left 0.3s;
        gap: 20px;
    }

    nav.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

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

    .article-body h2 {
        font-size: 28px;
    }

    .pullquote {
        font-size: 20px;
        padding: 25px;
    }

    .cta-block {
        padding: 35px 25px;
    }

    .cta-block h3 {
        font-size: 26px;
    }

    .form-section {
        padding: 35px 25px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 14px 25px;
        font-size: 14px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }

    body {
        font-size: 16px;
    }
}
