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

:root {
    --primary-color: #2c5f6f;
    --primary-dark: #1a3d47;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f8f6;
    --border-color: #e0ddd8;
    --accent-color: #7fa99b;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-top: 2px solid var(--border-color);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn.reject {
    background-color: #f0f0f0;
    color: var(--text-color);
}

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

.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

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

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.editorial-layout {
    min-height: calc(100vh - 300px);
}

.story-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    max-width: 800px;
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

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

.page-header .narrow-content {
    padding: 80px 30px 40px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.intro-narrative {
    background-color: var(--bg-light);
}

.intro-narrative p {
    margin-bottom: 24px;
}

h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 50px 0 24px;
    line-height: 1.3;
    color: var(--primary-dark);
}

h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 36px 0 18px;
    color: var(--primary-dark);
}

h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
}

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

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

.image-caption {
    padding: 16px 20px;
    font-size: 15px;
    font-style: italic;
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.6);
}

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

.link-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 19px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

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

.trust-element {
    margin: 48px 0;
    padding: 32px;
    background-color: #fff;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trust-element blockquote {
    margin: 0;
}

.trust-element p {
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--text-color);
}

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

.cta-block {
    margin: 60px 0;
    padding: 48px 40px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 6px;
}

.cta-block h3 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 16px;
}

.cta-block p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

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

.services-preview h3 {
    text-align: center;
    margin-bottom: 36px;
}

.service-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    padding: 28px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.service-card h4 {
    margin: 0 0 12px;
    font-size: 20px;
}

.service-card p {
    margin: 0 0 16px;
    font-size: 16px;
    color: var(--text-light);
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-selection-form {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.inquiry-form {
    margin-top: 32px;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.service-option {
    display: block;
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.option-content {
    padding: 20px 24px;
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-option input[type="radio"]:checked + .option-content {
    background-color: #e8f4f1;
    border-color: var(--primary-color);
}

.option-content:hover {
    border-color: var(--accent-color);
}

.option-content strong {
    font-size: 18px;
    color: var(--text-color);
}

.option-content .service-price {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
}

.option-content p {
    margin: 0;
    font-size: 15px;
    color: var(--text-light);
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    padding: 20px;
    background-color: #fff;
    border-left: 3px solid var(--accent-color);
}

.about-content,
.services-detailed,
.contact-content,
.legal-content {
    background-color: #fff;
}

.service-detail {
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-image-wrapper {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-text h2 {
    margin-top: 0;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0 20px;
}

.service-includes {
    margin: 24px 0;
    padding-left: 24px;
}

.service-includes li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-content {
    min-height: 500px;
}

.thanks-message {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.thanks-message h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-confirmation {
    margin: 32px 0;
    padding: 20px;
    background-color: #e8f4f1;
    border-radius: 6px;
}

.service-selected {
    font-size: 18px;
    margin: 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

.next-steps h2 {
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
    padding: 0;
    margin-top: 32px;
}

.steps-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 60px;
    margin-bottom: 32px;
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.steps-list li strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.steps-list li p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.legal-content ul {
    margin: 16px 0 16px 32px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.legal-content th,
.legal-content td {
    padding: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.legal-content th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.site-footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    color: #fff;
    margin: 0 0 16px;
    font-size: 18px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

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

    .main-nav {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

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

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

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

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

    h2 {
        font-size: 26px;
    }

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

    body {
        font-size: 17px;
    }

    .cta-block {
        padding: 32px 24px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-actions a {
        text-align: center;
    }
}