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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #1f2937;
    background-color: #ffffff;
    font-size: 18px;
}

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

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.ad-disclosure {
    padding: 0.4rem 0.9rem;
    background-color: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #92400e;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1f2937;
}

.editorial-main {
    background-color: #fafafa;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #ffffff;
    min-height: calc(100vh - 400px);
}

.hero-editorial {
    margin-bottom: 3.5rem;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 2.5rem;
    background-color: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

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

h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

.intro-story,
.insight-reveal,
.benefit-narrative,
.about-story,
.services-intro,
.contact-content,
.thanks-content {
    margin-bottom: 3rem;
}

.intro-story p,
.insight-reveal p,
.benefit-narrative p,
.about-story p,
.services-intro p,
.contact-content p,
.legal-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1f2937;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.inline-image-block {
    margin: 3rem 0;
}

.inline-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.image-caption {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.8rem;
    line-height: 1.5;
}

.highlighted-insight {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem 1.8rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.highlighted-insight p {
    margin: 0;
    font-weight: 500;
    color: #92400e;
}

.story-module {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.story-module h3 {
    margin-top: 0;
}

.testimonial-inline {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.cta-inline,
.services-cta {
    margin: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.cta-box h2,
.cta-box h3 {
    color: #ffffff;
    margin-top: 0;
}

.cta-box p {
    color: #e0e7ff;
    margin-bottom: 1.8rem;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1e3a8a;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #1e3a8a;
    transition: all 0.3s;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: #1e3a8a;
    color: #ffffff;
}

.transparency-block {
    background-color: #f3f4f6;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 4rem 0;
}

.transparency-block h2 {
    margin-top: 0;
}

.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f9fafb;
    border-radius: 10px;
}

.form-section h2 {
    margin-top: 0;
}

.editorial-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.disclaimer-section {
    margin: 4rem 0 2rem;
    padding: 2rem;
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #7f1d1d;
    margin: 0;
}

.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.page-header h1 {
    margin-bottom: 0.8rem;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

.services-list {
    margin-top: 3rem;
}

.service-module {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background-color: #f9fafb;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.service-module.featured {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #f59e0b;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.module-content h2 {
    margin-top: 0;
}

.module-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    background-color: #e5e7eb;
}

.module-includes {
    margin: 2rem 0;
}

.module-includes h4 {
    margin-bottom: 1rem;
}

.module-includes ul {
    list-style: none;
    padding-left: 0;
}

.module-includes li {
    padding-left: 1.8rem;
    margin-bottom: 0.7rem;
    position: relative;
    line-height: 1.6;
}

.module-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.module-price {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3a8a;
    display: block;
}

.price-original {
    font-size: 1.3rem;
    color: #9ca3af;
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.contact-info-block {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-email {
    font-weight: 600;
    color: #1f2937;
}

.contact-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.contact-image-block {
    margin: 3rem 0;
}

.contact-additional {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-item h3 {
    margin-top: 0;
    color: #1f2937;
}

.thanks-content {
    text-align: center;
    padding: 3rem 0;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    display: inline-block;
}

.thanks-message {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-details h2 {
    margin-top: 0;
}

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

.next-steps li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.thanks-info-box {
    background-color: #eff6ff;
    border: 2px solid #93c5fd;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    text-align: left;
}

.thanks-info-box h3 {
    margin-top: 0;
    color: #1e40af;
}

.thanks-actions {
    margin: 3rem 0;
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.legal-content {
    max-width: 900px;
}

.legal-section {
    line-height: 1.8;
}

.legal-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-section strong {
    color: #1f2937;
}

.legal-section a {
    color: #3b82f6;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1e40af;
}

.no-link {
    color: #4b5563;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.gdpr-table th,
.cookies-table th {
    background-color: #f3f4f6;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #d1d5db;
}

.gdpr-table td,
.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.site-footer {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem 2rem;
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background-color: #3b82f6;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2563eb;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #d1d5db;
    border: 2px solid #4b5563;
}

.btn-cookie-reject:hover {
    border-color: #6b7280;
    color: #ffffff;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .ad-disclosure {
        order: -1;
        width: 100%;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-cookie,
    .btn-cookie-reject {
        flex: 1;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .thanks-actions {
        display: flex;
        flex-direction: column;
    }
}