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

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

.ad-notice {
    background-color: #f4f1e8;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6b7466;
    border-bottom: 1px solid #e0ddd0;
}

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

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

.brand {
    font-size: 22px;
    font-weight: bold;
    color: #3d5a3d;
}

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

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

.nav-links a:hover {
    color: #68a568;
}

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

.hero-editorial {
    margin: 40px -25px 50px;
    position: relative;
    overflow: hidden;
}

.hero-editorial img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #d4e3d4;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px 30px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 38px;
    line-height: 1.3;
    font-weight: normal;
}

.story-intro {
    margin: 50px 0;
}

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

.story-intro p {
    font-size: 17px;
    margin-bottom: 20px;
}

.inline-visual {
    margin: 60px -25px;
}

.inline-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #d4e3d4;
}

.story-content {
    margin: 50px 0;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e2c;
    font-weight: normal;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 20px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #4a7c4a;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #3d6a3d;
}

.btn-secondary {
    display: inline-block;
    background-color: #68a568;
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 3px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #5a945a;
}

.services-showcase {
    margin: 80px 0;
}

.services-showcase h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e2c;
    text-align: center;
    font-weight: normal;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e6df;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #d4e3d4;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3d5a3d;
    font-weight: normal;
}

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

.price {
    font-size: 20px;
    color: #4a7c4a;
    font-weight: bold;
    margin: 20px 0 15px;
}

.how-it-works {
    margin: 60px 0;
    padding: 40px;
    background-color: #f7f6f2;
    border-left: 4px solid #68a568;
}

.how-it-works h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e2c;
    font-weight: normal;
}

.how-it-works p {
    font-size: 17px;
    margin-bottom: 18px;
}

.contact-form-section {
    margin: 70px 0;
    padding: 45px;
    background-color: #ffffff;
    border: 1px solid #e8e6df;
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e2c;
    font-weight: normal;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #4a5d4a;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #d0cec0;
    border-radius: 3px;
    font-family: 'Georgia', serif;
}

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

.form-group input[readonly] {
    background-color: #f7f6f2;
    cursor: not-allowed;
}

.disclaimer-box {
    margin: 60px 0;
    padding: 30px;
    background-color: #fef9e7;
    border: 1px solid #e8d896;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer-box strong {
    color: #8b7b3a;
}

.main-footer {
    background-color: #3d5a3d;
    color: #e8f0e8;
    padding: 50px 30px 20px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

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

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

.footer-column a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e2c;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 1000;
}

.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;
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: #c8dcc8;
}

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

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

.btn-accept {
    background-color: #68a568;
    color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

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

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

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