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

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

.ad-disclosure {
    background-color: #f4e9d8;
    color: #5a4a3a;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #d4c4b4;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3a3a3a;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #8b6f47;
}

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

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

.hero-image-wrapper {
    margin-bottom: 2rem;
    background-color: #e8dfd0;
    border-radius: 4px;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2a2a2a;
    font-weight: 400;
}

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

.editorial-intro {
    margin-bottom: 3rem;
}

.editorial-intro p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.inline-image-block {
    margin: 2.5rem 0;
    background-color: #f0ebe0;
    border-radius: 4px;
    overflow: hidden;
}

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

.image-caption {
    display: block;
    padding: 1rem;
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
}

.editorial-services {
    margin-bottom: 3rem;
}

.editorial-services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2a2a2a;
    font-weight: 400;
}

.service-narrative {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-story h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
    font-weight: 500;
}

.service-story p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-inline-image {
    margin: 1.5rem 0;
    background-color: #ebe6db;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-detail {
    font-weight: 600;
    color: #4a4a4a;
    font-size: 1.1rem;
}

.select-service-btn {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
    margin-top: 0.5rem;
}

.select-service-btn:hover {
    background-color: #6f5a38;
}

.editorial-process {
    margin-bottom: 3rem;
}

.editorial-process h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
    font-weight: 400;
}

.editorial-process p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.form-section-editorial {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #f5f2ed;
    border-radius: 4px;
}

.form-section-editorial h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.form-section-editorial > p {
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #3a3a3a;
    font-size: 0.95rem;
}

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

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

.submit-btn {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #6f5a38;
}

.editorial-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #d8d8d8;
}

.disclaimer {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #6a6a6a;
    line-height: 1.6;
    font-style: italic;
}

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

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

.footer-links a:hover {
    color: #8b6f47;
}

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

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
    font-weight: 400;
}

.header-intro {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.about-philosophy,
.about-process,
.about-sustainability,
.about-team {
    margin-bottom: 3rem;
}

.about-philosophy h2,
.about-process h2,
.about-sustainability h2,
.about-team h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
    font-weight: 400;
}

.about-philosophy p,
.about-process p,
.about-sustainability p,
.about-team p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-image {
    background-color: #ebe6db;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
    font-weight: 500;
}

.service-content p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.service-price {
    font-weight: 600;
    color: #8b6f47;
    font-size: 1.2rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.service-link:hover {
    background-color: #6f5a38;
}

.services-note {
    padding: 2rem;
    background-color: #f5f2ed;
    border-radius: 4px;
    margin-bottom: 3rem;
}

.services-note h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.services-note p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #5a5a5a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.contact-block p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.contact-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
}

.contact-map-placeholder {
    padding: 2rem;
    background-color: #f5f2ed;
    border-radius: 4px;
    margin-bottom: 3rem;
}

.map-note p {
    font-size: 1rem;
    color: #5a5a5a;
}

.thanks-content {
    text-align: center;
    padding: 3rem 0;
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2a2a2a;
    font-weight: 400;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a5a5a;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f2ed;
    border-radius: 4px;
}

.thanks-details p {
    font-weight: 600;
    color: #3a3a3a;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.thanks-link {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.thanks-link:hover {
    background-color: #6f5a38;
}

.legal-page .legal-content {
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: #2a2a2a;
    font-weight: 500;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #3a3a3a;
    font-weight: 500;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: #4a4a4a;
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.legal-content a {
    color: #8b6f47;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #6f5a38;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #6f5a38;
}

.cookie-btn.reject {
    background-color: #5a5a5a;
    color: #ffffff;
}

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

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

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

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

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

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

    .editorial-services h2 {
        font-size: 1.6rem;
    }

    .service-story h3 {
        font-size: 1.3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
    }
}