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

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

.top-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a472a;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #2d5f3f;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.7rem;
    background: #f0f0f0;
    border-radius: 3px;
}

.editorial-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8ebe7;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a472a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #4a5f4a;
    font-style: italic;
}

.narrow-column {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.story-intro, .value-proposition, .services-preview, .contact-inline, .closing-thought {
    margin-bottom: 4rem;
}

.opening-line {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.narrow-column p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.narrow-column h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
    font-weight: 600;
    margin-top: 2.5rem;
}

.narrow-column h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
    font-weight: 600;
    margin-top: 2rem;
}

.inline-image {
    margin: 3rem 0;
    background-color: #e8ebe7;
}

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

figcaption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    background: #f5f5f5;
}

.insight-box {
    background: #f0f4f1;
    border-left: 4px solid #2d5f3f;
    padding: 1.8rem;
    margin: 2.5rem 0;
}

.insight-box p {
    margin: 0;
    font-size: 1.1rem;
}

.service-story {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.price-mention {
    font-size: 1.15rem;
    color: #1a472a;
    font-weight: 600;
    margin: 1rem 0;
}

.inline-cta {
    display: inline-block;
    color: #2d5f3f;
    text-decoration: none;
    border-bottom: 2px solid #2d5f3f;
    padding-bottom: 0.2rem;
    transition: all 0.3s;
}

.inline-cta:hover {
    color: #1a472a;
    border-bottom-color: #1a472a;
}

.editorial-form {
    background: #fff;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
    background: #fafafa;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f3f;
    background: #fff;
}

.submit-btn {
    background: #2d5f3f;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.submit-btn:hover {
    background: #1a472a;
}

.emphasis-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #1a472a;
    font-style: italic;
    text-align: center;
    padding: 2rem 0;
}

.site-footer {
    background: #2c3e2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.email-text {
    color: #d0d0d0;
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a5f4a;
    text-align: center;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 200;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #8fb89f;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-family: inherit;
}

.cookie-btn.accept {
    background: #2d5f3f;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #1a472a;
}

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

.cookie-btn.reject:hover {
    border-color: #999;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-top: 0;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: #e8ebe7;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-content h1 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 2rem;
}

.about-content h2 {
    font-size: 2rem;
    color: #2d5f3f;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-content h1 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 2rem;
}

.contact-info {
    background: #f0f4f1;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-info h3 {
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.back-home {
    display: inline-block;
    background: #2d5f3f;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    margin-top: 2rem;
    transition: background 0.3s;
}

.back-home:hover {
    background: #1a472a;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    font-size: 2.3rem;
    color: #1a472a;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2d5f3f;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2d5f3f;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .narrow-column {
        padding: 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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