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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97c593;
    --accent-color: #e8773d;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-white: #ffffff;
    --bg-cream: #faf8f5;
    --bg-light: #f4f1ed;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    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: all 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: #234d24;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.main-nav {
    background-color: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Palatino', 'Georgia', serif;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.story-header {
    background-color: var(--bg-cream);
    padding: 80px 20px;
    text-align: center;
}

.header-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-header h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 400;
}

.lead-text {
    font-size: 22px;
    color: var(--text-medium);
    line-height: 1.6;
    font-style: italic;
}

.story-section {
    padding: 60px 20px;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

.story-section p {
    font-size: 19px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    margin-top: 40px;
    font-weight: 400;
    color: var(--text-dark);
}

.story-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 400;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
}

.cta-inline {
    background-color: var(--primary-color);
    padding: 60px 20px;
}

.inline-cta-box {
    text-align: center;
    color: var(--bg-white);
}

.inline-cta-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 400;
}

.inline-cta-box p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.highlight-bg {
    background-color: var(--bg-light);
}

.quote-box {
    background-color: var(--bg-white);
    padding: 32px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-color);
}

.quote-box blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.quote-box cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.story-list {
    margin: 32px 0;
    padding-left: 24px;
}

.story-list li {
    font-size: 19px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.trust-section {
    padding: 80px 20px;
    background-color: var(--bg-cream);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 18px;
    color: var(--text-medium);
}

.testimonial-section {
    padding: 60px 20px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.testimonial-card cite {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
}

.services-reveal {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.services-reveal h2 {
    text-align: center;
    margin-bottom: 16px;
}

.services-reveal > .narrow-content > p {
    text-align: center;
    margin-bottom: 48px;
    font-size: 19px;
}

.service-card {
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 32px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.service-header {
    background-color: var(--bg-white);
    padding: 28px;
    position: relative;
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
}

.service-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-content {
    padding: 28px;
}

.service-content > p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.btn-select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #234d24;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 60px 20px;
    background-color: var(--accent-color);
}

.urgency-box {
    text-align: center;
    color: var(--bg-white);
}

.urgency-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.urgency-box p {
    font-size: 18px;
    margin-bottom: 12px;
}

.countdown-text {
    font-size: 20px;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 17px;
    color: var(--text-medium);
}

.final-cta {
    padding: 80px 20px;
    background-color: var(--bg-cream);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 32px;
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px 48px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 19px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow: auto;
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 60px auto;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 28px;
    font-size: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #234d24;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .trust-grid {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }
}

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

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

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

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .modal-content {
        margin: 20px;
        padding: 24px;
    }
}
