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

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

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

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

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

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

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie-reject:hover {
    background-color: #333;
}

.header-editorial {
    padding: 2.5rem 2rem;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.tagline {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 0.3rem;
}

.nav-minimal {
    display: flex;
    gap: 2rem;
}

.nav-minimal a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-minimal a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #4a7c59;
    transition: width 0.3s ease;
}

.nav-minimal a:hover::after {
    width: 100%;
}

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

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

.hero-text-centered {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.hero-image-inline {
    margin: 0;
}

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

.story-block {
    margin: 4rem 0;
}

.narrow-content {
    max-width: 100%;
}

.narrow-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #333;
}

.quote-inline {
    display: block;
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #4a7c59;
    background-color: #f5f5f5;
    font-style: italic;
    font-size: 1.15rem;
    color: #2a2a2a;
}

.visual-break {
    margin: 4rem -2rem;
}

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-services {
    margin: 4rem 0;
    padding: 2rem;
    background-color: #fff;
}

.services-editorial {
    margin: 4rem 0;
}

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

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

.service-card-editorial h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card-editorial p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #444;
}

.price-tag {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    background-color: #4a7c59;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-inline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #4a7c59;
}

.testimonial-inline {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #666;
}

.philosophy-block {
    margin: 4rem 0;
}

.inline-image-offset {
    margin: 2rem 0;
}

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

.cta-section-editorial {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.form-editorial {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2a2a2a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fafafa;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #4a7c59;
    color: #fff;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-words {
    margin: 4rem 0;
    text-align: center;
}

.final-words p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
}

.footer-minimal {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #999;
}

@media (max-width: 768px) {
    .header-editorial {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.05rem;
    }

    .editorial-container {
        padding: 2rem 1rem;
    }

    .visual-break {
        margin: 3rem -1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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