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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #faf8f5;
    --bg-white: #ffffff;
    --border-color: #e0d9d1;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    font-size: 18px;
}

.ad-notice {
    background-color: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Arial', sans-serif;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.editorial-content {
    max-width: 100%;
    background-color: var(--bg-white);
}

.article-hero {
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--bg-light);
    margin-bottom: 48px;
}

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

.hero-title {
    max-width: 720px;
    margin: 0 auto 24px;
    padding: 0 24px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
}

.hero-intro {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 22px;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.story-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.narrative-block {
    margin-bottom: 40px;
}

.opening-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.narrative-block p {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-heading {
    font-size: 32px;
    margin: 48px 0 24px;
    font-weight: 400;
    color: var(--primary-color);
}

.inline-image-block {
    margin: 48px 0;
}

.inline-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
}

.image-caption {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.callout-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 28px 32px;
    margin: 40px 0;
}

.callout-text {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.callout-text a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.callout-text a:hover {
    border-bottom: 2px solid var(--primary-color);
}

.services-preview {
    margin: 60px 0;
}

.service-card {
    background-color: var(--bg-light);
    margin-bottom: 48px;
    padding: 0;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-card h3,
.service-card p,
.service-card button {
    padding-left: 32px;
    padding-right: 32px;
}

.card-title {
    font-size: 28px;
    margin: 28px 0 16px;
    color: var(--primary-color);
    font-weight: 400;
}

.card-description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.card-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 24px 0;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    margin-bottom: 32px;
    transition: background-color 0.3s;
}

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

.testimonial {
    border-left: 3px solid var(--accent-color);
    padding-left: 28px;
    margin: 36px 0;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 15px;
    color: var(--text-light);
}

.editorial-form {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 48px 0;
}

.selected-service-info {
    background-color: var(--bg-white);
    padding: 20px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
    font-size: 17px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: 'Arial', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 32px;
    margin: 60px 0 40px;
    border-top: 2px solid var(--border-color);
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.references-section {
    margin: 40px 0;
    padding: 32px;
    background-color: var(--bg-light);
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.references-list {
    list-style: decimal;
    padding-left: 24px;
}

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

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.references-list a:hover {
    border-bottom: 1px solid var(--primary-color);
}

.page-header {
    max-width: 720px;
    margin: 60px auto 48px;
    padding: 0 24px;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-intro {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
}

.criteria-list {
    list-style: none;
    margin: 24px 0;
    padding-left: 0;
}

.criteria-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
}

.criteria-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.services-detailed {
    margin-bottom: 60px;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: var(--bg-light);
    padding: 0;
}

.service-detail-image {
    width: 100%;
    margin-bottom: 32px;
}

.service-detail-content {
    padding: 0 40px 40px;
}

.service-detail-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 400;
}

.service-detail-price {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.service-detail-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin: 24px 0 32px;
    padding-left: 0;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.form-section {
    margin-top: 60px;
}

.contact-info-section {
    margin-top: 40px;
}

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

.contact-detail {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-note {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

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

.thanks-title {
    font-size: 42px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.thanks-message {
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 19px;
    line-height: 1.7;
}

.thanks-message p {
    margin-bottom: 20px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    font-size: 17px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

.thanks-btn:hover {
    background-color: #1e4438;
}

.thanks-btn-secondary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    font-size: 17px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

.thanks-btn-secondary:hover {
    background-color: #6d5738;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
    font-style: italic;
}

.legal-heading {
    font-size: 28px;
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-weight: 400;
}

.legal-subheading {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 28px 0 16px;
    font-weight: 400;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-list {
    list-style: disc;
    margin: 20px 0 20px 32px;
}

.legal-list li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.legal-content a:hover {
    border-bottom: 2px solid var(--primary-color);
}

.site-footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 48px 24px;
    margin-top: 80px;
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copy {
    font-size: 14px;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 24px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    color: var(--bg-white);
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    margin: 0;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.cookie-btn:hover {
    opacity: 0.85;
}

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

    .hero-intro {
        font-size: 19px;
    }

    .section-heading {
        font-size: 28px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .minimal-nav {
        padding: 16px 20px;
    }

    .story-container {
        padding: 0 20px 60px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}