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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: #666;
    color: white;
}

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

.top-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;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

.article-header {
    margin-bottom: 40px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 400;
    color: #1a1a1a;
}

.article-meta {
    font-size: 16px;
    color: #777;
    font-style: italic;
}

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

.hero-image img {
    width: 100%;
    border-radius: 3px;
}

.article-content {
    font-size: 19px;
    line-height: 1.8;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.article-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.article-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2a2a2a;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 25px;
    padding-left: 40px;
}

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

.content-image {
    margin: 40px 0;
}

.content-image img {
    width: 100%;
    border-radius: 3px;
}

.article-quote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    margin: 45px 0;
    padding: 30px 40px;
    background-color: #f5f5f5;
    border-left: 4px solid #4a7c59;
    color: #2a2a2a;
}

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

.cta-link {
    color: #4a7c59;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 2px solid #4a7c59;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

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

.cta-block {
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 3px;
    text-align: center;
}

.cta-block h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-block p {
    margin-bottom: 25px;
    font-size: 17px;
}

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #4a7c59;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin: 5px;
}

.cta-button:hover {
    background-color: #3d6649;
}

.cta-button.secondary {
    background-color: #666;
}

.cta-button.secondary:hover {
    background-color: #555;
}

.testimonial-block {
    margin: 45px 0;
    padding: 35px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    text-align: right;
}

.services-list {
    margin: 40px 0;
}

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

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

.service-item h2,
.service-item h3 {
    margin-top: 0;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #4a7c59;
    margin: 20px 0;
}

.service-select {
    padding: 12px 30px;
    background-color: #4a7c59;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.booking-form {
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 3px;
}

.booking-form.hidden {
    display: none;
}

.booking-form h2,
.booking-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.selected-service {
    font-size: 18px;
    color: #4a7c59;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', serif;
}

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

.submit-button {
    padding: 14px 40px;
    background-color: #4a7c59;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #3d6649;
}

.disclaimer {
    margin: 50px 0;
    padding: 30px;
    background-color: #fff8e1;
    border-left: 4px solid #f9a825;
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.disclaimer strong {
    color: #2a2a2a;
}

.final-cta {
    margin: 50px 0;
    text-align: center;
}

.final-cta h3 {
    margin-top: 0;
}

.contact-details {
    margin: 40px 0;
}

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

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
}

.thanks-content {
    text-align: center;
}

.thanks-message h2 {
    margin-top: 0;
    color: #4a7c59;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    align-items: center;
}

.thanks-link {
    color: #4a7c59;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 1px solid #4a7c59;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.thanks-link:hover {
    color: #3d6649;
    border-color: #3d6649;
}

.service-confirm {
    font-size: 18px;
    color: #4a7c59;
    font-weight: 600;
    margin: 25px 0;
}

.legal-page .article-content {
    font-size: 17px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-page h3 {
    font-size: 21px;
    margin-top: 30px;
}

.site-footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 40px 20px;
    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: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-note {
    font-size: 13px;
    color: #999;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

    .article-content {
        font-size: 18px;
    }

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

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

    .article-content h3 {
        font-size: 21px;
    }

    .article-quote {
        font-size: 21px;
        padding: 25px 20px;
    }

    .cta-block {
        padding: 30px 20px;
    }

    .booking-form {
        padding: 30px 20px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

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

@media screen and (max-width: 480px) {
    .article-header h1 {
        font-size: 28px;
    }

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

    .service-price {
        font-size: 24px;
    }
}
