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

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

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

.cookie-banner.active {
    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: 250px;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: white;
}

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

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

.main-nav a:hover {
    color: #8b7355;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f9fa;
}

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

.story-flow {
    display: flex;
    flex-direction: column;
}

.hero-editorial {
    width: 100%;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #8b7355;
    overflow: hidden;
}

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

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

.hero-overlay h1 {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
}

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

.intro-text {
    margin-bottom: 80px;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #34495e;
}

.narrow-content p {
    margin-bottom: 24px;
    font-size: 18px;
}

.narrow-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 32px;
    margin-top: 60px;
    font-weight: 400;
    color: #2c3e50;
}

.problem-section,
.insight-section,
.trust-section {
    margin-bottom: 80px;
}

.inline-image {
    margin: 48px 0;
    background-color: #e8e5df;
}

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

.highlight-box {
    background-color: #f4f1eb;
    border-left: 4px solid #8b7355;
    padding: 24px;
    margin: 40px 0;
}

.highlight-box p {
    margin: 0;
    font-size: 18px;
    font-style: italic;
    color: #5d4e37;
}

.visual-break {
    width: 100%;
    margin: 80px 0;
    background-color: #d4cfc5;
}

.visual-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.testimonial-inline {
    margin-bottom: 80px;
}

blockquote {
    border-left: 3px solid #8b7355;
    padding-left: 32px;
    margin: 48px 0;
}

blockquote p {
    font-size: 20px;
    font-style: italic;
    color: #34495e;
    line-height: 1.7;
}

cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.services-reveal {
    margin-bottom: 80px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0ddd5;
    padding: 36px;
    margin-bottom: 32px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    margin-top: 24px;
    margin-bottom: 20px;
}

.btn-service {
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-service:hover {
    background-color: #6f5a43;
}

.btn-service.selected {
    background-color: #27ae60;
}

.form-section {
    margin-bottom: 80px;
    background-color: #f9f7f4;
    padding: 60px 20px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0ddd5;
    margin-top: 32px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: 'Georgia', serif;
    background-color: #fdfbf7;
}

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

.form-group input[readonly] {
    background-color: #f4f1eb;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
    width: 100%;
}

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

.btn-submit:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.final-thought {
    margin-bottom: 80px;
}

.final-thought p {
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
    color: #5d4e37;
    font-style: italic;
}

.site-footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 8px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ecf0f1;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 0;
    border-top: 1px solid #4a5f7f;
    border-bottom: 1px solid #4a5f7f;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.copyright p {
    font-size: 13px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 16px;
    }

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

    .lead-paragraph {
        font-size: 18px;
    }

    .narrow-content h2 {
        font-size: 26px;
    }

    .service-card {
        padding: 24px;
    }

    .contact-form {
        padding: 24px;
    }

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