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

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

.ad-disclosure {
    background-color: #f0ebe5;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0ddd8;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8B7355;
}

.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-article h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
}

.article-content p {
    margin-bottom: 24px;
    color: #3a3a3a;
}

.article-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.article-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 16px;
    color: #3a3a3a;
    font-weight: 500;
}

.article-content ul {
    margin: 20px 0 24px 30px;
}

.article-content ul li {
    margin-bottom: 12px;
    color: #3a3a3a;
}

.hero-image-wrapper,
.inline-image-block {
    margin: 40px -20px;
    width: calc(100% + 40px);
    overflow: hidden;
}

.hero-image-wrapper img,
.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.service-preview-card {
    background-color: #f9f7f4;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #8B7355;
}

.service-preview-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.service-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
    color: #3a3a3a;
}

.service-list li:last-child {
    border-bottom: none;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background-color: #8B7355;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #6d5a43;
}

.testimonial {
    margin: 30px 0;
    padding: 25px;
    background-color: #fafafa;
    border-left: 3px solid #8B7355;
    font-style: italic;
}

.testimonial p {
    margin-bottom: 12px;
    font-size: 19px;
}

.testimonial cite {
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f5f2ef;
    border: 1px solid #e0ddd8;
}

.form-section h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 16px;
}

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

.editorial-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #3a3a3a;
    font-family: 'Arial', sans-serif;
}

.editorial-form input,
.editorial-form select,
.editorial-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: 'Georgia', serif;
}

.editorial-form input:focus,
.editorial-form select:focus,
.editorial-form textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.submit-btn {
    padding: 14px 32px;
    background-color: #8B7355;
    color: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #6d5a43;
}

.closing-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0ddd8;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 20px 20px;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 20px;
    background-color: #3a3a3a;
    font-size: 13px;
    line-height: 1.6;
    color: #bbb;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.service-card {
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.service-image-wrapper {
    flex: 1;
    min-width: 280px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    flex: 1;
    min-width: 280px;
}

.service-content h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 12px;
}

.service-price {
    font-size: 24px;
    color: #8B7355;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #3a3a3a;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background-color: #8B7355;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #6d5a43;
}

.services-cta-section,
.about-cta,
.contact-cta,
.thanks-cta {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9f7f4;
    text-align: center;
}

.services-cta-section h2,
.about-cta h3,
.contact-cta h3 {
    margin-top: 0;
}

.primary-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #8B7355;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.primary-cta:hover {
    background-color: #6d5a43;
}

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

.contact-section {
    margin: 30px 0;
    padding: 25px;
    background-color: #f9f7f4;
    border-left: 3px solid #8B7355;
}

.contact-section h2 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
}

.contact-note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.thanks-hero {
    text-align: center;
    margin-bottom: 50px;
}

.thanks-details,
.thanks-next-steps {
    margin: 40px 0;
}

.thanks-service-info {
    padding: 20px;
    background-color: #f9f7f4;
    border-left: 3px solid #8B7355;
    margin: 20px 0;
}

.legal-article ul {
    margin: 20px 0 24px 30px;
}

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

.legal-article a {
    color: #8B7355;
    text-decoration: underline;
}

.legal-article a:hover {
    color: #6d5a43;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8B7355;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #6d5a43;
}

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #3a3a3a;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }

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

    .editorial-container {
        padding: 40px 20px;
    }

    .hero-article h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 19px;
    }

    .article-content h2 {
        font-size: 26px;
    }

    .hero-image-wrapper,
    .inline-image-block {
        margin: 30px 0;
        width: 100%;
    }

    .service-card {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}