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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #d4c4b0;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    width: 90%;
    max-width: 800px;
}

.article-hero {
    position: relative;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text-overlay .subtitle {
    font-size: 20px;
    font-weight: 300;
}

.story-intro,
.story-problem,
.story-insight,
.trust-section,
.services-reveal,
.form-section,
.disclaimer-section,
.services-overview,
.contact-content {
    padding: 60px 0;
}

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

.article-narrow p {
    margin-bottom: 25px;
    font-size: 17px;
}

.article-narrow h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #2c3e50;
}

.article-narrow h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.inline-image-left,
.inline-image-right,
.inline-image-center {
    margin: 35px 0;
    background-color: #e8e0d5;
}

.inline-image-left {
    float: left;
    width: 45%;
    margin-right: 30px;
    margin-bottom: 20px;
}

.inline-image-right {
    float: right;
    width: 45%;
    margin-left: 30px;
    margin-bottom: 20px;
}

.inline-image-center {
    width: 100%;
    margin: 40px 0;
}

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

.testimonial-inline {
    background-color: #f9f7f4;
    border-left: 4px solid #8b7355;
    padding: 25px 30px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.citation {
    color: #8b7355;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #8b7355;
}

.citation:hover {
    color: #6a5638;
}

.service-cards-stacked {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 30px;
}

.service-card {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    margin-bottom: 35px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-image {
    flex: 0 0 300px;
    background-color: #e8e0d5;
}

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

.service-content {
    flex: 1;
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 0;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #8b7355;
    margin: 20px 0;
}

.cta-select {
    background-color: #8b7355;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-select:hover {
    background-color: #6a5638;
}

.order-form {
    background-color: #f9f7f4;
    padding: 40px;
    margin-top: 30px;
    border: 1px solid #e0e0e0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #8b7355;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    background-color: #f4f4f4;
    padding: 20px;
    border-left: 3px solid #ccc;
    margin-top: 40px;
}

.site-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0 30px;
    margin-top: 60px;
}

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

.footer-references {
    margin-bottom: 35px;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-references ol {
    margin-left: 20px;
    font-size: 13px;
    line-height: 1.8;
}

.footer-references a {
    color: #a8c5dd;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #444;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-info {
    font-size: 14px;
    color: #aaa;
}

.footer-info p {
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #a8c5dd;
    text-decoration: underline;
}

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

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

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

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

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

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

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-header .subtitle {
    font-size: 18px;
    color: #666;
}

.service-card-detailed {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    margin-bottom: 50px;
    overflow: hidden;
}

.service-card-detailed .service-image {
    width: 100%;
    height: 350px;
    background-color: #e8e0d5;
}

.service-card-detailed .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-detailed .service-content {
    padding: 40px;
}

.service-card-detailed h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 0;
    color: #2c3e50;
}

.service-card-detailed h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card-detailed ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-card-detailed li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #8b7355;
    margin: 30px 0 20px;
}

.btn-order {
    display: inline-block;
    background-color: #8b7355;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-order:hover {
    background-color: #6a5638;
}

.additional-services {
    margin-top: 40px;
}

.additional-service-item {
    background-color: #f9f7f4;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 3px solid #8b7355;
}

.additional-service-item h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
    color: #2c3e50;
}

.additional-service-item p {
    font-size: 15px;
    margin-bottom: 10px;
}

.additional-service-item .service-price {
    font-size: 18px;
    font-weight: 600;
    color: #8b7355;
    margin: 0;
}

.info-note {
    background-color: #f4f4f4;
    padding: 15px;
    font-size: 13px;
    color: #666;
    margin-top: 40px;
    border-left: 3px solid #ccc;
}

.contact-info-blocks {
    margin: 40px 0;
}

.contact-block {
    background-color: #f9f7f4;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 3px solid #8b7355;
}

.contact-block h2 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-block ul {
    margin-left: 20px;
    margin-top: 10px;
}

.contact-block li {
    margin-bottom: 6px;
    font-size: 15px;
}

.contact-block .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
}

.faq-section {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.legal-page a {
    color: #8b7355;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #6a5638;
}

.updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.thanks-page {
    padding: 80px 0;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-info {
    background-color: #f9f7f4;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
    border-left: 3px solid #8b7355;
}

.thanks-info p {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
}

.thanks-info ul {
    margin-left: 25px;
}

.thanks-info li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.btn-back {
    display: inline-block;
    background-color: #8b7355;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 15px;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #6a5638;
}

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

    .nav-links {
        gap: 20px;
    }

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

    .hero-text-overlay .subtitle {
        font-size: 16px;
    }

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

    .service-image {
        flex: 0 0 250px;
    }

    .inline-image-left,
    .inline-image-right {
        float: none;
        width: 100%;
        margin: 25px 0;
    }

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

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

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