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

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f6f2;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
}

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

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

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.nav-brand h1 {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-notice {
    background-color: var(--bg-light);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    margin-left: auto;
}

.ad-notice span {
    font-size: 0.75rem;
    color: var(--text-light);
}

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

.hero-editorial {
    position: relative;
    height: 65vh;
    overflow: hidden;
    background-color: var(--primary-color);
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-text-overlay {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--bg-white);
    max-width: 700px;
    padding: 0 2rem;
}

.hero-text-overlay h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-text-overlay p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

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

.intro-narrow {
    max-width: 650px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.intro-narrow h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.intro-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--text-dark);
}

.image-inline {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.image-inline img {
    width: 100%;
    border-radius: 4px;
    background-color: var(--bg-light);
}

.caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.8rem;
    font-style: italic;
}

.insight-block {
    background-color: var(--bg-light);
    padding: 4rem 5%;
    margin: 5rem 0;
}

.insight-block h3 {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.insight-block p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.services-inline {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.services-inline h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
}

.service-cards-editorial {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.card-editorial {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    width: calc(33.333% - 2rem);
    min-width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-editorial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-editorial img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.card-editorial h4 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary-color);
}

.card-editorial p {
    margin: 0 1.5rem 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.card-editorial .price {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
}

.features-list {
    list-style: none;
    margin: 1rem 1.5rem;
}

.features-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.btn-select-service,
.btn-primary,
.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin: 1.5rem;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-select-service:hover,
.btn-primary:hover,
.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 1.5rem;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.02);
}

.trust-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.trust-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.trust-section p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.testimonial-inline {
    background-color: var(--bg-light);
    padding: 3rem 5%;
    margin: 4rem 0;
}

.testimonial-inline blockquote {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.form-section-editorial {
    max-width: 600px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.form-section-editorial h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.form-section-editorial > p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-white);
    font-family: inherit;
}

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

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

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 2rem 5%;
    margin-top: 5rem;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 5%;
    margin-top: 5rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 24, 16, 0.97);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons button {
    margin: 0;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.8rem;
    font-weight: 400;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

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

.contact-info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-block p {
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-block .note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

.thanks-page {
    text-align: center;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-details p {
    margin-bottom: 1rem;
}

.next-steps {
    text-align: left;
    margin: 2rem 0;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.next-steps ol {
    margin-left: 2rem;
    line-height: 2;
}

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

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .ad-notice {
        margin-left: 0;
    }

    .hero-text-overlay h2 {
        font-size: 2.2rem;
    }

    .hero-text-overlay p {
        font-size: 1.1rem;
    }

    .card-editorial {
        width: 100%;
    }

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

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