* {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e3;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.ad-notice {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

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

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

.editorial-main {
    min-height: 70vh;
}

.story-flow {
    padding: 0;
}

.hero-narrative {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4c5b9;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 60px 40px 40px;
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 19px;
    max-width: 700px;
    opacity: 0.95;
    font-style: italic;
}

.story-intro {
    margin: 60px 0;
}

.opening-line {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    color: #4a4a4a;
}

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

.problem-section,
.insight-reveal,
.trust-building,
.benefits-section,
.service-preview {
    margin: 80px 0;
}

h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 500;
    color: #1a1a1a;
}

h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 500;
    color: #2c2c2c;
}

p {
    font-size: 17px;
    margin-bottom: 20px;
}

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

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

.citation {
    color: #2563eb;
    text-decoration: none;
    font-size: 15px;
}

.citation:hover {
    text-decoration: underline;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #f5f3f0;
    border-left: 4px solid #9ca3af;
}

.testimonial-inline blockquote {
    font-size: 19px;
    font-style: italic;
    color: #3a3a3a;
}

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

.benefits-list {
    list-style-position: inside;
    margin: 30px 0;
}

.benefits-list li {
    font-size: 17px;
    margin-bottom: 12px;
    padding-left: 10px;
}

.service-cards-inline {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-compact {
    background-color: #ffffff;
    border: 1px solid #e5e5e3;
    overflow: hidden;
}

.service-image-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #d9d4cf;
}

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

.service-card-compact h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
}

.service-card-compact p {
    margin: 0 25px 15px;
    font-size: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #1a5f3f;
    margin: 25px 25px 20px !important;
}

.btn-select-service {
    display: inline-block;
    margin: 0 25px 25px;
    padding: 14px 28px;
    background-color: #2c5f4d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

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

.cta-inline-section {
    margin: 80px 0;
    padding: 40px;
    background-color: #f0ede8;
    text-align: center;
}

.form-section-editorial {
    background-color: #ffffff;
    padding: 60px 0;
    margin: 80px 0;
    border-top: 1px solid #e5e5e3;
    border-bottom: 1px solid #e5e5e3;
}

.selected-service-box {
    padding: 20px;
    background-color: #e8f4f0;
    border-left: 4px solid #2c5f4d;
    margin-bottom: 30px;
}

.selected-service-box p {
    margin: 5px 0;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d1d1cf;
    background-color: #fafaf8;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.btn-submit {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f4d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 17px;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #fef8f0;
    border-left: 3px solid #d97706;
}

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

.footer-editorial {
    background-color: #2c2c2c;
    color: #d1d1cf;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-references {
    margin-bottom: 40px;
}

.footer-references h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.references-list {
    list-style-position: inside;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
}

.references-list a {
    color: #9ca3af;
    text-decoration: none;
}

.references-list a:hover {
    color: #d1d1cf;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
}

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

.footer-copy {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    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;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    flex: 1;
}

.cookie-content a {
    color: #93c5fd;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #2c5f4d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1a4435;
}

.btn-reject {
    background-color: #4b5563;
    color: #ffffff;
}

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

.about-intro,
.about-journey,
.about-approach,
.about-expertise,
.about-commitment {
    margin: 60px 0;
}

.expertise-list {
    list-style-position: inside;
    margin: 30px 0;
}

.expertise-list li {
    font-size: 17px;
    margin-bottom: 12px;
    padding-left: 10px;
}

.services-intro {
    margin: 40px 0 60px;
}

.service-detail-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e3;
    overflow: hidden;
}

.service-detail-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #d9d4cf;
}

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

.service-detail-content {
    padding: 35px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 600;
    color: #1a5f3f;
    margin: 15px 0 25px !important;
}

.service-detail-content ul {
    list-style-position: inside;
    margin: 20px 0;
}

.service-detail-content li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.services-note {
    margin: 60px 0;
    padding: 25px;
    background-color: #f5f3f0;
    font-size: 15px;
}

.contact-intro {
    margin: 40px 0;
}

.contact-details-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 60px 0;
}

.contact-info-block {
    background-color: #ffffff;
    border: 1px solid #e5e5e3;
    padding: 35px;
}

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

.contact-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.contact-item p {
    margin: 5px 0;
    font-size: 16px;
}

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px !important;
}

.map-replacement {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #d9d4cf;
}

.map-replacement img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.contact-additional ul {
    list-style-position: inside;
    margin: 25px 0;
}

.contact-additional li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 10px;
}

.contact-faq {
    margin: 60px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e3;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin: 0 0 12px;
    font-size: 19px;
}

.faq-item p {
    margin: 0;
    font-size: 16px;
}

.thanks-section {
    padding: 80px 20px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a5f3f;
}

.thanks-message {
    margin: 40px 0;
}

.service-confirmation-box {
    display: none;
    padding: 20px;
    background-color: #e8f4f0;
    border-left: 4px solid #2c5f4d;
    margin: 30px 0;
    text-align: left;
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps-list {
    list-style-position: inside;
    margin: 25px 0;
}

.next-steps-list li {
    font-size: 17px;
    margin-bottom: 15px;
    padding-left: 10px;
}

.thanks-cta {
    margin: 60px 0 0;
}

.thanks-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #2c5f4d;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #6b7280;
    color: #ffffff;
}

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

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

.legal-intro {
    font-size: 18px;
    font-style: italic;
    margin: 30px 0;
    color: #555;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 18px;
}

.legal-content ul {
    list-style-position: inside;
    margin: 20px 0;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.legal-update {
    margin-top: 50px;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

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

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

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

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

    h2 {
        font-size: 26px;
    }

    .opening-line {
        font-size: 20px;
    }

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

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