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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.nav-minimal {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f2d;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5f2d;
}

.editorial-content {
    background-color: #ffffff;
}

.article-hero {
    height: 500px;
    position: relative;
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-overlay h1 {
    max-width: 800px;
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.article-hero-small {
    padding: 80px 20px 40px;
    text-align: center;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.article-hero-small h1 {
    font-size: 2.2rem;
    color: #2c5f2d;
    max-width: 800px;
    margin: 0 auto;
}

.article-body {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.text-column {
    max-width: 680px;
    width: 100%;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.text-column h2 {
    font-size: 1.8rem;
    margin: 50px 0 20px;
    color: #2c5f2d;
    line-height: 1.3;
}

.text-column h3 {
    font-size: 1.4rem;
    margin: 35px 0 15px;
    color: #2a2a2a;
    font-weight: 600;
}

.text-column p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.text-column ul {
    margin: 20px 0 20px 30px;
    list-style-type: disc;
}

.text-column li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

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

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

.inline-image figcaption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.text-column img:not(.inline-image img) {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
}

.service-price {
    font-size: 1.15rem;
    color: #2c5f2d;
    font-weight: 700;
    margin-top: 15px;
}

.cta-inline {
    background-color: #f8f9f8;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #2c5f2d;
    border-radius: 4px;
}

.cta-inline p {
    margin-bottom: 15px;
}

.btn-text {
    color: #2c5f2d;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #1e4620;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.btn-primary:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #2c5f2d;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.contact-form {
    background-color: #f8f9f8;
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #2c5f2d;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.disclaimer {
    background-color: #fff8e1;
    border-left: 4px solid #ffa000;
    padding: 20px;
    margin: 40px 0;
    font-size: 0.9rem;
    line-height: 1.6;
    border-radius: 4px;
}

.disclaimer p {
    margin: 0;
}

.service-block {
    margin: 40px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.service-block:last-of-type {
    border-bottom: none;
}

.btn-service {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #2c5f2d;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.contact-info-block {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.contact-item p {
    margin-bottom: 8px;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2c5f2d;
    font-size: 1.15rem;
}

.thanks-page {
    text-align: center;
    padding: 60px 20px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-info {
    background-color: #f8f9f8;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.thanks-info p {
    margin: 0;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.step-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9f8;
    border-radius: 4px;
}

.step-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.step-item p {
    margin: 0;
}

.thanks-cta {
    margin-top: 50px;
}

.thanks-cta p {
    margin-bottom: 20px;
}

.legal-page .text-column {
    max-width: 900px;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    color: #2c5f2d;
}

.legal-page h3,
.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 25px;
    color: #2a2a2a;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 20px 20px;
}

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

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.footer-section a:hover {
    color: #27ae60;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .article-hero-small h1 {
        font-size: 1.6rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .text-column h2 {
        font-size: 1.5rem;
    }

    .text-column h3 {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 25px;
    }

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

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

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

    .btn-primary,
    .btn-secondary {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}