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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #8b7355;
    --color-accent: #c9a67a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f5f1;
    --color-border: #e0d5c7;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: Georgia, "Times New Roman", serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg);
    font-size: 16px;
}

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

.header-minimal {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 0.25rem 0.75rem;
    background: var(--color-bg-alt);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.editorial-flow {
    background: var(--color-bg);
}

.story-container {
    padding-bottom: 4rem;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-intro {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.content-block {
    padding: 3rem 0;
}

.opening-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.content-block p,
.problem-reveal p,
.insight-section p,
.approach-reveal p,
.trust-builders p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.inline-cta-soft {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-left: 3px solid var(--color-secondary);
}

.text-link {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--color-accent);
    transition: var(--transition);
}

.text-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.problem-reveal,
.insight-section,
.approach-reveal,
.trust-builders {
    padding: 3rem 0;
}

.problem-reveal h2,
.insight-section h2,
.approach-reveal h2,
.trust-builders h2,
.benefits-reveal h2,
.form-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.image-inline {
    margin: 2.5rem 0;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

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

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-accent);
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.insight-section a,
.trust-builders a {
    color: var(--color-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-accent);
}

.benefits-reveal {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    border-radius: 4px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 400;
}

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

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

.select-service-btn {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.select-service-btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.select-service-btn.selected {
    background: var(--color-primary);
}

.form-section {
    padding: 4rem 0;
}

.contact-form {
    margin-top: 2rem;
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--color-bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.disclaimer-section {
    padding: 3rem 0;
    background: var(--color-bg-alt);
}

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

.references-section {
    padding: 3rem 0;
}

.references-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.references-list a {
    color: var(--color-secondary);
    text-decoration: none;
    word-break: break-all;
}

.site-footer {
    background: var(--color-primary);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background: var(--color-secondary);
    color: white;
}

.btn-accept:hover {
    background: var(--color-accent);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.thanks-content .service-info {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-content .service-info strong {
    color: var(--color-secondary);
}

.thanks-content a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--color-secondary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
}

.thanks-content a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: var(--color-bg-alt);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.page-content {
    padding: 4rem 0;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin: 2.5rem 0 1rem;
    font-weight: 400;
}

.page-content h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin: 2rem 0 1rem;
}

.page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.contact-info {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

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

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-info .email-display {
    color: var(--color-text);
    font-weight: 500;
}

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

    .hero-intro {
        font-size: 1.1rem;
    }

    .problem-reveal h2,
    .insight-section h2,
    .approach-reveal h2,
    .trust-builders h2,
    .benefits-reveal h2,
    .form-section h2 {
        font-size: 1.6rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }
}