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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #ff6b35;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 17px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
}

.btn-cookie:hover {
    background: var(--secondary-color);
}

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

.btn-cookie.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.story-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

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

.intro-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.header-image {
    margin: 40px 0 0;
    border-radius: 8px;
    overflow: hidden;
}

.header-image img {
    width: 100%;
}

.story-body {
    background: var(--bg-white);
}

.content-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.content-column p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.drop-cap::first-letter {
    font-size: 72px;
    font-weight: 700;
    line-height: 60px;
    float: left;
    margin: 8px 12px 0 0;
    color: var(--primary-color);
}

.content-column h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
}

.content-column h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--text-dark);
}

.inline-image {
    margin: 48px 0;
    border-radius: 6px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
}

figcaption {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.callout-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 28px;
    margin: 40px 0;
    border-radius: 4px;
}

.callout-box h3 {
    margin: 0 0 16px 0;
    font-size: 20px;
}

.callout-box p {
    margin: 0;
    font-size: 17px;
}

.service-spotlight {
    margin: 48px 0;
    padding: 36px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-spotlight h2,
.service-spotlight h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-spotlight p {
    margin-bottom: 16px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0 20px;
}

.inline-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.testimonial-insert {
    margin: 48px 0;
    padding: 32px;
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
}

.testimonial-insert blockquote {
    margin: 0;
}

.testimonial-insert p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.form-section {
    margin: 60px 0;
    padding: 48px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.closing-statement {
    margin: 60px 0 0;
    padding: 40px 0;
    border-top: 2px solid var(--border-color);
    font-size: 19px;
    line-height: 1.8;
}

.closing-statement p {
    font-size: 19px;
    color: var(--text-dark);
}

.contact-info-block {
    margin: 40px 0;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 6px;
}

.contact-info-block h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-info-block p {
    margin-bottom: 12px;
}

.return-links {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.site-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 48px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.footer-main p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

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

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

    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }

    .content-column {
        padding: 30px 20px 60px;
    }

    .content-column h2 {
        font-size: 28px;
    }

    .service-spotlight {
        padding: 24px;
    }

    .price-tag {
        font-size: 24px;
    }

    .form-section {
        padding: 32px 24px;
    }

    .drop-cap::first-letter {
        font-size: 56px;
        line-height: 48px;
    }

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

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

    .intro-lead {
        font-size: 17px;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .content-column p {
        font-size: 17px;
    }

    .content-column h2 {
        font-size: 24px;
    }

    .service-spotlight {
        padding: 20px;
    }
}