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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #a8d5ba;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #666666;
    color: #ffffff;
}

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 12px;
    color: #999999;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.editorial-container {
    max-width: 100%;
}

.story-flow {
    width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-editorial img {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background-color: rgba(44, 44, 44, 0.7);
    padding: 40px 60px;
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-subtext {
    font-size: 20px;
    font-style: italic;
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.content-narrow p {
    margin-bottom: 25px;
    font-size: 18px;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: normal;
    color: #2c2c2c;
}

.inline-image-block {
    width: 100%;
    margin: 40px 0;
    padding: 20px;
    border-radius: 8px;
}

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

.testimonial-inline {
    border-left: 4px solid #4a7c59;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 20px;
    color: #4a4a4a;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #666666;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.benefit-card {
    padding: 30px;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: normal;
}

.benefit-card p {
    margin: 0;
    font-size: 16px;
}

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

.cta-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #3a6347;
}

.citation {
    color: #4a7c59;
    text-decoration: none;
    font-weight: bold;
}

.citation:hover {
    text-decoration: underline;
}

.services-reveal {
    margin-top: 60px;
}

.services-intro {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.service-image {
    width: 100%;
    height: 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
    background-color: #ffffff;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: normal;
}

.service-content p {
    margin-bottom: 15px;
}

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

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

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

.form-section {
    margin-top: 60px;
    padding: 40px;
    background-color: #f9f7f4;
    border-radius: 8px;
}

.form-section h2 {
    margin-top: 0;
}

.contact-form {
    max-width: 100%;
}

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

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

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

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

.btn-submit {
    padding: 15px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3a6347;
}

.cta-final {
    text-align: center;
    margin: 60px 0;
    padding: 50px;
    background-color: #f4f1ea;
    border-radius: 8px;
}

.cta-final h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}

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

.cta-button-final {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #fff8dc;
    border-left: 4px solid #d4a574;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.references-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.references-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: normal;
}

.references-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 1.8;
}

.references-list li {
    margin-bottom: 15px;
}

.references-list a {
    color: #4a7c59;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #a8d5ba;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    text-align: center;
    border-top: 1px solid #444444;
}

.footer-bottom p {
    font-size: 12px;
    color: #999999;
}

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

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

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

    .hero-subtext {
        font-size: 16px;
    }

    .content-narrow {
        padding: 40px 20px;
    }

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

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

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