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

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

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

a {
    color: #8b6f47;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b6f47;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8b6f47;
    text-decoration: none;
}

.hero-fullwidth {
    width: 100%;
    height: 85vh;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-lead {
    font-size: 22px;
    max-width: 700px;
    line-height: 1.6;
}

.story-intro {
    padding: 100px 40px;
    background-color: #fafafa;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.opening-hook {
    font-size: 28px;
    font-weight: 600;
    color: #8b6f47;
    margin-bottom: 32px;
    line-height: 1.4;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.narrow-content img {
    margin: 48px 0;
    border-radius: 8px;
    width: 100%;
}

.insight-text {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    padding: 32px;
    background-color: #f0e9e1;
    border-left: 4px solid #8b6f47;
    margin: 48px 0;
}

.problem-amplification {
    padding: 100px 40px;
    background-color: #ffffff;
}

.split-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c2c2c;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    width: 100%;
}

.insight-reveal {
    padding: 120px 40px;
    background-color: #8b6f47;
    color: #ffffff;
}

.centered-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered-box h2 {
    font-size: 42px;
    margin-bottom: 36px;
}

.centered-box p {
    font-size: 20px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.reference-link {
    margin-top: 40px;
    font-size: 16px;
}

.reference-link a {
    color: #f0e9e1;
    text-decoration: underline;
}

.story-scenario {
    padding: 100px 40px;
    background-color: #fafafa;
}

.narrative-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.scenario-image-left {
    flex: 1;
}

.scenario-image-left img {
    border-radius: 8px;
    width: 100%;
}

.scenario-text-right {
    flex: 1;
}

.scenario-text-right h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #8b6f47;
}

.scenario-text-right p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.benefits-cards {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 320px;
    max-width: 360px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #2c2c2c;
}

.benefit-card p {
    font-size: 16px;
    margin: 0 24px 24px;
    color: #555;
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #f0e9e1;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.testimonial {
    background-color: #ffffff;
    padding: 32px;
    margin-bottom: 32px;
    border-radius: 8px;
    border-left: 4px solid #8b6f47;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: #3a3a3a;
}

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

.trust-building {
    padding: 100px 40px;
    background-color: #ffffff;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.trust-points {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #8b6f47;
}

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

.services-preview {
    padding: 100px 40px;
    background-color: #fafafa;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #555;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    margin-bottom: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    gap: 32px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    margin-top: 16px;
}

.service-action {
    flex-shrink: 0;
}

.btn-service {
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #6f5838;
    transform: translateY(-2px);
}

.final-cta {
    padding: 80px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 20px;
    line-height: 1.6;
}

.order-form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #2c2c2c;
}

.contact-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: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.btn-submit {
    padding: 16px 48px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.scientific-references {
    padding: 60px 40px;
    background-color: #fafafa;
}

.references-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.references-list {
    padding-left: 20px;
}

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

.references-list a {
    color: #8b6f47;
}

.disclaimer {
    padding: 60px 40px;
    background-color: #fff8f0;
    border-top: 2px solid #8b6f47;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

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

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

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

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

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

.footer-column ul li a {
    color: #bbb;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: none;
}

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

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

.page-header {
    padding: 80px 40px;
    background-color: #f0e9e1;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #555;
}

.page-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.content-wrapper h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.content-wrapper p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

.content-wrapper li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.contact-info {
    background-color: #fafafa;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.service-item {
    background-color: #fafafa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #8b6f47;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.service-item p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    margin-top: 16px;
}

.about-section {
    margin-bottom: 48px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 40px;
}

.thanks-container h1 {
    font-size: 48px;
    color: #8b6f47;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.thanks-container .btn-home {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 32px;
    transition: all 0.3s ease;
}

.thanks-container .btn-home:hover {
    background-color: #6f5838;
    text-decoration: none;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

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

    .split-block,
    .narrative-flow {
        flex-direction: column;
    }

    .cards-grid {
        flex-direction: column;
        align-items: center;
    }

    .trust-points {
        flex-direction: column;
    }

    .service-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }
}