* {
    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;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 16px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

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

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

.cookie-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: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 13px;
    color: #888888;
    font-style: italic;
    padding: 5px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
}

.editorial-content {
    background-color: #ffffff;
}

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

.story-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e8e8e8;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-lead {
    font-size: 22px;
    line-height: 1.5;
    color: #5a5a5a;
    font-style: italic;
}

.story-section {
    margin-bottom: 45px;
}

.story-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-section h3 {
    font-size: 24px;
    line-height: 1.3;
    margin: 25px 0 15px 0;
    font-weight: 600;
    color: #2c2c2c;
}

.story-section p {
    margin-bottom: 18px;
}

.story-section ul {
    margin: 20px 0 20px 30px;
    list-style-type: disc;
}

.story-section li {
    margin-bottom: 12px;
    line-height: 1.6;
}

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

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

.inline-cta {
    margin: 40px 0;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.insight-block {
    background-color: #f5f5f5;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #4a7c59;
}

.insight-block p {
    margin-bottom: 0;
    font-style: italic;
}

.trust-section {
    margin: 50px 0;
    padding: 40px 30px;
    background-color: #f9f9f9;
}

.trust-section h3 {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
}

blockquote {
    margin: 30px 0;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

blockquote:last-of-type {
    border-bottom: none;
}

blockquote p {
    font-size: 19px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 10px;
}

cite {
    font-size: 16px;
    color: #777777;
    font-style: normal;
    display: block;
}

.services-overview {
    margin: 60px 0;
}

.services-overview h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
}

.services-overview > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 19px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 6px;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

.disclaimer-section {
    background-color: #fff8e7;
    border: 1px solid #f0d490;
    padding: 25px;
    margin: 50px 0;
    border-radius: 4px;
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0;
}

.consultation-form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.consultation-form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.consultation-form-section > p {
    text-align: center;
    margin-bottom: 35px;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 14px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.story-footer {
    margin-top: 70px;
    padding-top: 40px;
    border-top: 2px solid #e8e8e8;
}

.story-footer > p {
    margin-bottom: 30px;
    font-size: 17px;
}

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

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

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

.footer-note {
    text-align: center;
    font-size: 14px;
    color: #888888;
}

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

.contact-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e8e8e8;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

.services-detailed {
    margin: 50px 0;
}

.service-detail {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 2px solid #e8e8e8;
}

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

.service-detail h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.service-detail h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
}

.service-detail ul {
    margin: 20px 0 25px 30px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #4a7c59;
    margin: 25px 0 20px 0;
}

@media (max-width: 768px) {
    .story-header h1 {
        font-size: 32px;
    }

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

    .story-section h2 {
        font-size: 26px;
    }

    .story-section h3 {
        font-size: 21px;
    }

    body {
        font-size: 17px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .consultation-form-section {
        padding: 25px 20px;
    }

    .service-card {
        padding: 25px;
    }

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

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}

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

    .story-section h2 {
        font-size: 24px;
    }

    body {
        font-size: 16px;
    }

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