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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a472a;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

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

.hero-editorial {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #34495e;
}

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    text-align: center;
}

.hero-text-overlay h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px;
}

.story-intro,
.story-section,
.problem-amplification,
.insight-section,
.trust-building,
.benefits-reveal,
.services-pricing,
.form-section,
.references-section,
.disclaimer-section,
.about-hero,
.about-story,
.services-hero,
.services-detailed,
.contact-hero,
.contact-info,
.thanks-section {
    padding: 0;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 400;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-narrow h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a472a;
    font-weight: 700;
}

.story-narrow h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 16px;
    color: #27ae60;
    font-weight: 600;
}

.inline-image {
    width: 100%;
    max-width: 100%;
    margin: 40px 0;
    border-radius: 4px;
    display: block;
    background-color: #ecf0f1;
}

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

.cta-text-link {
    display: inline-block;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.benefit-list {
    margin: 30px 0;
    padding-left: 30px;
}

.benefit-list li {
    font-size: 18px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.testimonial-inline {
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
}

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-card.featured {
    border: 2px solid #27ae60;
}

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

.service-card h3 {
    font-size: 24px;
    color: #1a472a;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0 24px 16px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 24px;
}

.select-service-btn {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cta-section {
    text-align: center;
    margin: 60px 0 40px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a472a;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 0;
}

.order-form {
    margin: 40px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

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

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

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.form-row input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover:not(:disabled) {
    background-color: #229954;
}

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

.references-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    margin-top: 60px;
}

.references-list {
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: #27ae60;
    word-break: break-all;
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 30px 20px;
    margin-top: 40px;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #27ae60;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.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;
    margin: 0;
    font-size: 15px;
}

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

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

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.legal-page .story-narrow {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 20px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #27ae60;
}

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.service-detail-block {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.service-detail-block:last-of-type {
    border-bottom: none;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0 24px;
}

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

.contact-block h2 {
    font-size: 24px;
    color: #1a472a;
    margin-bottom: 16px;
}

.contact-data {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-note {
    font-size: 15px;
    color: #7f8c8d;
}

.contact-display {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-content {
    text-align: center;
    padding: 80px 20px;
}

.thanks-content h1 {
    font-size: 40px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-details {
    text-align: left;
    margin: 40px 0;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
}

.next-steps li {
    margin-bottom: 16px;
    font-size: 17px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

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

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

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

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

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

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