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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2520;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.ad-disclosure {
    background-color: #f4ede3;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6a5a4a;
    border-bottom: 1px solid #e0d5c7;
}

.header-editorial {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2d2520;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #5a4a3a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.editorial-main {
    background-color: #faf8f5;
}

.story-flow {
    background-color: #fff;
}

.hero-editorial {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-title-large {
    font-size: 52px;
    color: #fff;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 20px;
    color: #f0e8dc;
    max-width: 700px;
    font-style: italic;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-intro,
.story-content {
    padding: 60px 0;
}

.opening-paragraph {
    font-size: 22px;
    line-height: 1.6;
    color: #3d2f1f;
    margin-bottom: 30px;
}

.story-content p {
    margin-bottom: 24px;
    font-size: 18px;
    color: #4a3d30;
}

.story-content h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    color: #2d2520;
    font-weight: 400;
}

.story-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #3d2f1f;
    font-weight: 600;
}

.story-content ul,
.value-list {
    margin: 20px 0 30px 30px;
    list-style: disc;
}

.story-content li,
.value-list li {
    margin-bottom: 12px;
    font-size: 18px;
    color: #4a3d30;
}

.story-content a {
    color: #c49a6c;
    text-decoration: underline;
}

.story-content a:hover {
    color: #b08859;
}

.inline-image-block {
    margin: 60px 0;
    text-align: center;
}

.inline-image-block img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.image-caption {
    font-size: 14px;
    color: #7a6a5a;
    font-style: italic;
    margin-top: 12px;
}

.story-quote {
    border-left: 4px solid #c49a6c;
    padding-left: 30px;
    margin: 40px 0;
    font-size: 22px;
    font-style: italic;
    color: #5a4a3a;
    line-height: 1.6;
}

.centered-cta-block {
    text-align: center;
    padding: 40px 0;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #c49a6c;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.services-reveal {
    background-color: #f9f6f2;
    padding: 80px 0;
}

.service-cards-editorial {
    margin-top: 40px;
}

.service-card-compact {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 3px solid #c49a6c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card-compact h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d2520;
}

.service-card-compact p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a4a3a;
    margin-bottom: 15px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #c49a6c;
    margin: 20px 0;
}

.btn-service-select {
    padding: 12px 28px;
    background-color: #2d2520;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service-select:hover {
    background-color: #4a3d30;
}

.service-card-full {
    background-color: #fff;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.service-image-wrap {
    flex: 0 0 300px;
    background-color: #e8e4dc;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    flex: 1;
    padding: 30px;
    min-width: 300px;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2d2520;
}

.service-details p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a4a3a;
    margin-bottom: 15px;
}

.form-section {
    background-color: #fff;
    padding: 80px 0;
}

.editorial-form {
    margin-top: 30px;
    max-width: 600px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2d2520;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0c5b5;
    background-color: #faf8f5;
    font-size: 15px;
    font-family: 'Georgia', serif;
    color: #2d2520;
}

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

.btn-submit {
    padding: 14px 36px;
    background-color: #c49a6c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: #7a6a5a;
    font-style: italic;
}

.disclaimer-section {
    background-color: #f4ede3;
    padding: 50px 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a4a3a;
}

.footer-editorial {
    background-color: #2d2520;
    color: #d0c5b5;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #d0c5b5;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d0c5b5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid #4a3d30;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #9a8a7a;
}

.page-header-simple {
    background-color: #f9f6f2;
    padding: 80px 40px;
    text-align: center;
}

.page-header-simple h1 {
    font-size: 48px;
    color: #2d2520;
    margin-bottom: 15px;
    font-weight: 400;
}

.page-subtitle {
    font-size: 20px;
    color: #6a5a4a;
    font-style: italic;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2d2520;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #3d2f1f;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a3d30;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 25px 30px;
    list-style: disc;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d0c5b5;
    font-size: 15px;
}

.cookie-table th {
    background-color: #f9f6f2;
    font-weight: 600;
    color: #2d2520;
}

.cookie-table td {
    color: #4a3d30;
}

.contact-info-block {
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    color: #2d2520;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a3d30;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 14px;
    color: #7a6a5a;
    font-style: italic;
}

.contact-additional {
    margin: 50px 0;
}

.contact-checklist {
    margin: 20px 0 30px 30px;
    list-style: disc;
}

.contact-checklist li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a3d30;
}

.contact-map-placeholder {
    margin: 40px 0;
    min-height: 200px;
}

.thanks-container {
    padding: 80px 0;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2d2520;
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 20px;
    color: #5a4a3a;
    margin-bottom: 30px;
}

.thanks-service-info {
    background-color: #f9f6f2;
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    text-align: left;
}

.thanks-service-info p {
    font-size: 16px;
    color: #4a3d30;
    margin: 0;
}

.thanks-next-steps {
    margin: 50px auto;
    max-width: 600px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: #2d2520;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: disc;
    margin-left: 30px;
}

.thanks-next-steps li {
    font-size: 16px;
    color: #4a3d30;
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    margin: 40px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #c49a6c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #b08859;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2d2520;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2d2520;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d2520;
    color: #fff;
}

.thanks-note {
    font-size: 14px;
    color: #7a6a5a;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .opening-paragraph {
        font-size: 19px;
    }

    .service-card-full {
        flex-direction: column;
    }

    .service-image-wrap {
        flex: 1;
        min-height: 200px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}