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

.ad-notice {
    background-color: #f4f1e8;
    color: #6b5d4f;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e0ddd3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3a3226;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #5a5046;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #8b6f47;
}

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

.article-hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #d4c9b8;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
    padding: 0 24px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #f0f0f0;
}

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-flow {
    margin-bottom: 64px;
}

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

.story-section {
    margin-bottom: 80px;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #3a3226;
}

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

.image-break {
    margin: 80px 0;
    background-color: #e8e4d9;
}

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

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3a3226;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #544939;
}

.testimonial-inline {
    background-color: #f7f5f0;
    padding: 60px 0;
    margin: 80px 0;
}

.testimonial-inline blockquote {
    font-size: 22px;
    font-style: italic;
    color: #4a4237;
    line-height: 1.6;
}

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

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

.insight-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #3a3226;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 24px;
}

.services-preview {
    background-color: #ffffff;
    padding: 80px 0;
    margin: 80px 0;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
    font-weight: 400;
    color: #3a3226;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #fafaf8;
    border: 1px solid #e8e6df;
    border-radius: 4px;
    overflow: hidden;
    width: calc(50% - 16px);
    max-width: 480px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    background-color: #d4c9b8;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    font-weight: 400;
    color: #3a3226;
}

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #5a5046;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    margin: 0 24px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #3a3226;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #544939;
}

.form-section {
    background-color: #f7f5f0;
    padding: 80px 0;
    margin: 80px 0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 400;
    color: #3a3226;
    text-align: center;
}

.form-section > .content-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #5a5046;
}

.main-form {
    max-width: 520px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #3a3226;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0cbc0;
    border-radius: 3px;
    background-color: #ffffff;
    font-family: Georgia, serif;
}

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

.form-group input[readonly] {
    background-color: #f0ede5;
    color: #7a6e5f;
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #3a3226;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s;
}

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

.trust-section {
    margin: 80px 0;
}

.trust-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 400;
    color: #3a3226;
}

.disclaimer {
    font-size: 14px;
    color: #7a6e5f;
    line-height: 1.6;
    font-style: italic;
    padding: 20px;
    background-color: #f7f5f0;
    border-left: 3px solid #d0cbc0;
}

.main-footer {
    background-color: #3a3226;
    color: #c9bfb0;
    padding: 48px 0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.footer-links a {
    color: #c9bfb0;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

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

.footer-info {
    text-align: center;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3a3226;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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 {
    margin: 0;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    flex: 1;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    border-radius: 3px;
    transition: opacity 0.2s;
}

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

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #ffffff;
}

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

.page-header {
    text-align: center;
    padding: 80px 24px 64px;
    background-color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 400;
    color: #3a3226;
    margin-bottom: 16px;
}

.header-intro {
    font-size: 20px;
    color: #5a5046;
    max-width: 680px;
    margin: 0 auto;
}

.services-detail {
    margin: 80px 0;
}

.service-detail-block {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 480px;
    background-color: #e8e4d9;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 400;
    color: #3a3226;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4237;
}

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

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #5a5046;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

.about-flow {
    margin: 80px 0;
}

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

.about-flow h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    font-weight: 400;
    color: #3a3226;
}

.content-image {
    margin: 64px 0;
    background-color: #e8e4d9;
}

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

.inline-quote {
    background-color: #f7f5f0;
    padding: 40px;
    margin: 48px 0;
    border-left: 4px solid #8b6f47;
}

.inline-quote p {
    font-size: 20px;
    font-style: italic;
    color: #4a4237;
    margin-bottom: 16px;
}

.inline-quote cite {
    font-size: 15px;
    font-style: normal;
    color: #7a6e5f;
}

.text-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 28px;
    background-color: #3a3226;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.text-cta:hover {
    background-color: #544939;
}

.contact-section {
    margin: 80px 0;
}

.contact-info-block {
    background-color: #ffffff;
    padding: 48px;
    border: 1px solid #e8e6df;
    border-radius: 4px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 400;
    color: #3a3226;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #3a3226;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-item p {
    font-size: 16px;
    color: #5a5046;
    line-height: 1.6;
}

.email-display {
    font-family: 'Courier New', monospace;
    color: #3a3226;
}

.contact-note {
    margin-top: 48px;
    padding: 24px;
    background-color: #f7f5f0;
    border-radius: 4px;
}

.contact-note p {
    font-size: 16px;
    color: #5a5046;
    line-height: 1.6;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #3a3226;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 32px;
    color: #4a4237;
}

.thanks-details {
    margin: 32px 0;
    padding: 24px;
    background-color: #f7f5f0;
    border-radius: 4px;
}

.thanks-details p {
    font-size: 17px;
    color: #3a3226;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #3a3226;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3a3226;
    border: 2px solid #3a3226;
}

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

.legal-page .page-header {
    background-color: #f7f5f0;
}

.legal-date {
    font-size: 14px;
    color: #7a6e5f;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-content {
    margin: 80px 0;
}

.legal-content h2 {
    font-size: 26px;
    margin: 48px 0 20px;
    font-weight: 400;
    color: #3a3226;
}

.legal-content h3 {
    font-size: 20px;
    margin: 32px 0 16px;
    font-weight: 400;
    color: #3a3226;
}

.legal-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4237;
}

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

.legal-content li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #4a4237;
}

@media (max-width: 1024px) {
    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

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

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

    .service-card {
        width: 100%;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

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