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

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

.ad-disclosure {
    background-color: #F5F1ED;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #E0DDD8;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #2C2C2C;
}

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

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

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

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

.editorial-story {
    width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.hero-text-overlay h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.hero-text-overlay p {
    font-size: 20px;
    line-height: 1.6;
}

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

.story-intro,
.about-intro,
.contact-intro,
.services-intro {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #3A3A3A;
}

.editorial-story p {
    margin-bottom: 24px;
    font-size: 18px;
}

.editorial-story h2 {
    font-size: 34px;
    margin: 50px 0 24px;
    font-weight: 400;
    color: #2C2C2C;
}

.editorial-story h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    font-weight: 500;
}

.inline-image {
    margin: 50px 0;
    border-radius: 4px;
    overflow: hidden;
}

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

.image-caption {
    font-size: 15px;
    font-style: italic;
    color: #666;
    padding: 12px 0;
    text-align: center;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.link-underline {
    color: #2C2C2C;
    text-decoration: underline;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.link-underline:hover {
    opacity: 0.7;
}

.section-layered {
    padding: 80px 0;
    margin: 60px 0;
}

.benefits-story {
    margin-top: 40px;
}

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

.benefit-item h3 {
    margin-bottom: 12px;
}

.testimonial-section {
    background-color: #F9F7F4;
    padding: 80px 0;
    margin: 60px 0;
}

.testimonial {
    border-left: 4px solid #8B7355;
    padding-left: 30px;
    font-size: 20px;
    font-style: italic;
    color: #3A3A3A;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.services-editorial {
    margin: 80px 0;
}

.service-card {
    margin-bottom: 60px;
    padding: 30px;
    border-radius: 8px;
}

.service-image {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

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

.service-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.service-text p {
    margin-bottom: 16px;
}

.price {
    font-size: 32px;
    font-weight: 600;
    color: #8B7355;
    margin: 20px 0;
}

.btn-select-service {
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    background-color: #F5F1ED;
    padding: 80px 0;
    margin: 60px 0;
}

.editorial-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2C2C2C;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-checkbox {
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 15px;
    color: #555;
}

.form-checkbox a {
    color: #2C2C2C;
    text-decoration: underline;
}

.btn-primary {
    background-color: #8B7355;
    color: #FFFFFF;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: #F5F1ED;
    color: #2C2C2C;
    border: 1px solid #CCC;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #E8E4DF;
}

.closing-section {
    margin: 80px 0 60px;
    text-align: center;
}

.footer-editorial {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.6;
    color: #CCC;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

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

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: #999;
}

.page-header {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-header h1 {
    position: absolute;
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.values-list,
.team-philosophy {
    margin: 50px 0;
}

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

.services-list {
    margin-top: 50px;
}

.service-detail {
    margin-bottom: 80px;
}

.service-image-full {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

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

.price-large {
    font-size: 36px;
    font-weight: 600;
    color: #8B7355;
    margin: 20px 0;
}

.included-list {
    margin: 24px 0;
    padding-left: 20px;
}

.included-list li {
    margin-bottom: 10px;
    font-size: 17px;
}

.services-note {
    margin-top: 60px;
    padding: 30px;
    background-color: #F9F7F4;
    border-radius: 6px;
}

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

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-block address {
    font-style: normal;
    line-height: 1.8;
    font-size: 17px;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #F5F1ED;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
    font-size: 16px;
}

.hours-list {
    list-style: none;
    margin-top: 16px;
}

.hours-list li {
    margin-bottom: 10px;
    font-size: 17px;
}

.contact-note {
    margin-top: 12px;
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-info,
.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-list {
    margin: 20px 0;
    padding-left: 20px;
}

.thanks-list li {
    margin-bottom: 10px;
    font-size: 17px;
}

.thanks-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #F5F1ED;
    border-radius: 6px;
    font-size: 18px;
}

.thanks-contact {
    margin: 40px 0;
    font-size: 16px;
}

.thanks-footer {
    margin-top: 50px;
    font-size: 18px;
    color: #555;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 400;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 500;
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    font-weight: 500;
}

.legal-section h4 {
    font-size: 18px;
    margin: 16px 0 8px;
    font-weight: 500;
}

.legal-section p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-section ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.legal-section address {
    font-style: normal;
    line-height: 1.8;
}

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

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

.cookie-table th {
    background-color: #F5F1ED;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px 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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

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

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

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

    .hero-text-overlay h1 {
        font-size: 36px;
    }

    .hero-text-overlay p {
        font-size: 18px;
    }

    .narrow-content {
        padding: 40px 20px;
    }

    .lead-text {
        font-size: 20px;
    }

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

    .service-card {
        padding: 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }

    .thanks-links {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 36px;
    }
}