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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #4f772d;
    --accent-color: #90a955;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

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

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

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

header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

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

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

.hero-editorial .subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 32px;
    font-weight: 300;
}

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

.article-image {
    width: 100%;
    height: auto;
    margin: 48px 0;
    border-radius: 4px;
}

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

.article-content h2 {
    font-size: 2rem;
    margin: 60px 0 24px;
    font-weight: 400;
    color: var(--text-dark);
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 48px 0 20px;
    font-weight: 400;
    color: var(--text-dark);
}

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

.article-content strong {
    font-weight: 600;
}

.inline-cta {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 48px 0;
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

.inline-cta h3 {
    margin: 0 0 16px;
    font-size: 1.4rem;
}

.inline-cta p {
    margin-bottom: 24px;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

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

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

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 4px;
}

.service-card h3 {
    margin: 0 0 16px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.quote-section {
    background-color: var(--bg-light);
    padding: 60px 40px;
    margin: 60px 0;
    text-align: center;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
}

.quote-section cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 1rem;
    color: var(--text-light);
}

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

.form-section h2 {
    text-align: center;
    margin-bottom: 32px;
}

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

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

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

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.sticky-cta p {
    color: var(--bg-white);
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.sticky-cta .btn {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.sticky-cta .btn:hover {
    background-color: var(--bg-light);
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-column a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 0.95rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    display: none;
    z-index: 10000;
}

.cookie-banner.show {
    display: flex;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

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

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

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

.contact-info h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 48px 0 20px;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

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

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

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

.thanks-message p {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.image-text-row {
    display: flex;
    gap: 48px;
    margin: 60px 0;
    align-items: center;
}

.image-text-row img {
    width: 45%;
    height: auto;
    border-radius: 4px;
}

.image-text-row .text-content {
    flex: 1;
}

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

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

    .article-content h2 {
        font-size: 1.6rem;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .image-text-row {
        flex-direction: column;
    }

    .image-text-row img {
        width: 100%;
    }
}
