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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 1000px;
    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: #ffffff;
    text-decoration: underline;
}

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

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

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

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

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

.nav-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    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: 28px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #888;
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

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

.main-story {
    background-color: #ffffff;
    padding: 60px 48px;
}

.story-hero {
    margin-bottom: 48px;
}

.hero-image-wrapper {
    margin: 0 -48px 40px -48px;
    background-color: #e8ede8;
}

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

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

.story-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

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

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

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3c3c3c;
}

.inline-image {
    margin: 40px 0;
    background-color: #f0f4f0;
}

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

.highlight-section {
    background-color: #f8faf8;
    padding: 40px;
    margin-left: -48px;
    margin-right: -48px;
    margin-bottom: 48px;
}

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

.cta-inline h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 600;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #4a7c59;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #f0f4f0;
    transform: translateY(-2px);
}

.form-wrapper {
    padding: 48px;
    background-color: #fafcfa;
    margin-left: -48px;
    margin-right: -48px;
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 16px;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

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

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

.contact-form .btn-primary {
    width: 100%;
    background-color: #4a7c59;
    color: #ffffff;
    margin-top: 12px;
}

.contact-form .btn-primary:hover {
    background-color: #3d6849;
}

.disclaimer-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
    margin-top: 60px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
    text-align: center;
}

.main-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 60px 24px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

.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 ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

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

    .ad-disclosure {
        flex-basis: 100%;
        padding-left: 0;
        border-left: none;
        margin-top: 8px;
    }

    .main-story {
        padding: 40px 24px;
    }

    .hero-image-wrapper {
        margin: 0 -24px 30px -24px;
    }

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

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

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

    .story-section p {
        font-size: 16px;
    }

    .highlight-section {
        padding: 30px 24px;
        margin-left: -24px;
        margin-right: -24px;
    }

    .cta-inline {
        padding: 36px 24px;
        margin-left: -24px;
        margin-right: -24px;
    }

    .form-wrapper {
        padding: 36px 24px;
        margin-left: -24px;
        margin-right: -24px;
    }

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