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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #4a7c59;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    font-family: 'Arial', sans-serif;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

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

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

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

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-top: 20px;
}

.inline-image {
    margin: 50px 0;
    background-color: #e8e8e6;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.text-block {
    margin: 50px 0;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.text-block h3 {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 400;
    color: #2c2c2c;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 18px;
}

.inline-cta {
    display: inline-block;
    margin-top: 15px;
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #4a7c59;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #3d6649;
    border-bottom-color: #3d6649;
}

.testimonial-card {
    background-color: #f5f5f3;
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid #4a7c59;
}

.testimonial-card blockquote {
    font-style: italic;
}

.testimonial-card p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 15px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.services-section {
    margin-top: 70px;
}

.service-cards {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #4a7c59;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.select-service {
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #3d6649;
}

.form-section {
    margin: 60px 0;
    background-color: #f5f5f3;
    padding: 50px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.selected-service-display {
    font-size: 16px;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    font-family: 'Georgia', serif;
}

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2c2c2c;
}

.cta-block {
    background-color: #4a7c59;
    color: #ffffff;
    padding: 50px;
    margin: 60px 0;
    text-align: center;
}

.cta-block h3 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.btn-cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #4a7c59;
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #f5f5f3;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f9f9f7;
    border-left: 3px solid #999;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: #4a7c59;
}

.footer-text {
    font-size: 14px;
    color: #999;
    font-family: 'Arial', sans-serif;
}

.page-header {
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 0 30px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 400;
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 400;
}

.page-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    font-size: 17px;
    line-height: 1.7;
}

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

.contact-info {
    background-color: #f5f5f3;
    padding: 40px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

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

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #4a7c59;
    font-weight: 400;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #4a7c59;
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .intro-text {
        font-size: 18px;
    }

    .text-block h2 {
        font-size: 28px;
    }

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

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

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