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

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

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

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

.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: #2c2c2c;
    letter-spacing: 1px;
}

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

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

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

.editorial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.hero-image-wrap {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
    background-color: #f5f5f5;
}

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

.hero-content h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.hero-content .lead {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

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

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-text p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.narrow-text h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.narrow-text h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.narrow-text h4 {
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.narrow-text a:hover {
    color: #6d5a42;
}

.narrow-text sup a {
    text-decoration: none;
    font-weight: 600;
}

.narrow-text ul,
.narrow-text ol {
    margin-left: 30px;
    margin-bottom: 24px;
}

.narrow-text li {
    margin-bottom: 10px;
    font-size: 18px;
}

.inline-image {
    width: 100%;
    margin: 40px 0;
    background-color: #f5f5f5;
}

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

.testimonial-inline {
    background-color: #f9f9f9;
    padding: 30px 40px;
    margin: 40px 0;
    border-left: 4px solid #8b7355;
}

.testimonial-inline blockquote {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    font-style: italic;
}

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

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

.services-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 0;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 350px;
    display: block;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 26px;
    margin: 30px 30px 15px 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card > p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin: 0 30px 25px 30px;
}

.service-features {
    margin: 25px 30px;
}

.service-features h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    margin-bottom: 15px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
}

.price-reveal {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px 30px;
}

.btn-select,
.btn-primary {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px 30px;
    padding: 16px 30px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-select:hover,
.btn-primary:hover {
    background-color: #6d5a42;
}

.cta-story {
    margin: 80px 0 60px 0;
    text-align: center;
}

.order-section {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #f9f9f9;
}

.form-container-editorial {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 30px;
}

.form-container-editorial h2 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.selected-service-display {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid #e8e8e8;
    text-align: center;
}

.selected-service-display p {
    font-size: 17px;
    color: #555;
    margin: 0;
}

.selected-service-display.active {
    border-color: #8b7355;
}

.selected-service-display.active p {
    color: #1a1a1a;
    font-weight: 600;
}

.editorial-form {
    background-color: #ffffff;
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 30px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.final-story {
    margin: 80px 0;
}

.references {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
}

.references h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.reference-list {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.reference-list li {
    margin-bottom: 15px;
}

.reference-list a {
    color: #8b7355;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.disclaimer {
    margin: 60px 0;
    padding: 30px 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #d4a574;
}

.disclaimer p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 20px 0;
    margin-top: 100px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 20px 30px 0 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

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

.btn-cookie {
    padding: 12px 25px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.page-header .subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.legal-content {
    margin-bottom: 60px;
}

.contact-info-block {
    background-color: #f9f9f9;
    padding: 35px 40px;
    margin: 40px 0;
}

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

.contact-info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c2c2c;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin: 0 auto 30px auto;
}

.thanks-section h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.next-steps h2 {
    text-align: center;
    margin-bottom: 40px;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.steps-list strong {
    display: block;
    font-size: 19px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.steps-list p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ffffff;
    color: #8b7355;
    border: 2px solid #8b7355;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: #ffffff;
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content .lead {
        font-size: 18px;
    }

    .narrow-text p {
        font-size: 17px;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}