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

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

.ad-notice {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

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

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

.editorial-container {
    max-width: 100%;
    background-color: #fff;
}

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

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: #d4c4b0;
}

.hero-image-wrap 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: 48px 5%;
}

.hero-overlay h1 {
    font-size: 42px;
    color: #fff;
    max-width: 800px;
    line-height: 1.3;
    font-weight: 400;
}

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

.content-narrow h1 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.3;
}

.content-narrow h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 500;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #444;
}

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

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

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

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

.btn-text {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-text:hover {
    background-color: #6d5638;
}

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #f9f7f4;
    border-left: 4px solid #8b6f47;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 20px;
}

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

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

.service-card-mini {
    margin-bottom: 40px;
    padding: 28px;
    background-color: #fafaf8;
    border: 1px solid #e8e8e8;
}

.service-card-mini h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 0;
    color: #2c2c2c;
}

.service-card-mini p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.price-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: #8b6f47;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cta-section-inline {
    margin: 56px 0;
    padding: 40px 32px;
    background-color: #f4f1ed;
    text-align: center;
}

.cta-section-inline h3 {
    font-size: 26px;
    margin-bottom: 16px;
    margin-top: 0;
}

.cta-section-inline p {
    font-size: 17px;
    color: #555;
}

.form-section {
    margin: 64px 0;
    padding: 40px 32px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 32px;
    margin-top: 0;
}

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

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

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: border-color 0.3s;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    align-self: flex-start;
}

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

.disclaimer-section {
    margin: 64px 0 0;
    padding: 24px;
    background-color: #f9f9f9;
    border-left: 3px solid #ccc;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-simple {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 48px 5%;
}

.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: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.footer-copy {
    font-size: 13px;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    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 {
    flex: 1;
    margin: 0;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.btn-cookie-accept:hover {
    background-color: #6d5638;
}

.btn-cookie-reject {
    background-color: #555;
    color: #fff;
}

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

.service-detail {
    display: flex;
    gap: 32px;
    margin-bottom: 56px;
    align-items: flex-start;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 280px;
    background-color: #f0ebe5;
}

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

.service-info {
    flex: 1;
    min-width: 280px;
}

.service-info h2 {
    font-size: 26px;
    margin-bottom: 16px;
    margin-top: 0;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.price-display {
    font-size: 22px;
    font-weight: 600;
    color: #8b6f47;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.service-note {
    margin-top: 64px;
    padding: 32px;
    background-color: #f9f7f4;
    border-left: 4px solid #8b6f47;
}

.service-note h3 {
    font-size: 20px;
    margin-bottom: 16px;
    margin-top: 0;
}

.service-note p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

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

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 0;
}

.contact-address,
.contact-email,
.contact-hours {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.contact-note {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
}

.process-list {
    margin: 24px 0;
    padding-left: 24px;
}

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

.thanks-content {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 120px;
}

.thanks-next-steps {
    margin: 48px auto;
    max-width: 500px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: none;
    padding: 0;
}

.thanks-next-steps li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.thanks-next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b6f47;
}

.legal-content h1 {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    font-size: 16px;
    margin-bottom: 16px;
    color: #444;
}

.legal-content ul,
.legal-content ol {
    padding-left: 32px;
}

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

.text-link {
    word-break: break-all;
    color: #8b6f47;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 16px;
    }

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

    .content-narrow {
        padding: 32px 16px;
    }

    .content-narrow h1 {
        font-size: 28px;
    }

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

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

    .service-detail {
        flex-direction: column;
    }

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

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