* {
    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.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

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

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

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

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

.btn-accept {
    background: #00b894;
    color: #ffffff;
}

.btn-accept:hover {
    background: #00a085;
}

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

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

.floating-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e17055;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    padding: 0.4rem 0.8rem;
    background: #ffeaa7;
    color: #2d3436;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: #34495e;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.story-intro {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.narrow-column p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #636e72;
}

.problem-reveal {
    padding: 6rem 2rem;
    background: #ffffff;
}

.offset-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-block-left {
    flex: 1;
    padding-right: 2rem;
}

.text-block-left h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text-block-left p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #636e72;
    line-height: 1.7;
}

.image-block-right {
    flex: 1;
    background: #ecf0f1;
}

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

.insight-section {
    padding: 6rem 2rem;
    background: #fef5e7;
}

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

.centered-content h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.insight-para {
    font-size: 1.25rem;
    color: #636e72;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.insight-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 1.5rem;
    color: #e17055;
    margin-bottom: 1rem;
}

.insight-card p {
    color: #636e72;
    font-size: 1.05rem;
}

.testimonial-flow {
    padding: 5rem 2rem;
    background: #2c3e50;
}

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

.testimonial-inline {
    font-size: 1.6rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.7;
    border-left: 4px solid #e17055;
    padding-left: 2rem;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    color: #bdc3c7;
}

.solution-intro {
    padding: 6rem 2rem;
    background: #ffffff;
}

.split-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.15rem;
    color: #636e72;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: #e17055;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #d35846;
    transform: translateY(-2px);
}

.split-image {
    flex: 1;
    background: #ecf0f1;
}

.split-image img {
    width: 100%;
    display: block;
}

.trust-building {
    padding: 5rem 2rem;
    background: #e8f4f8;
}

.trust-building h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.trust-building p {
    font-size: 1.15rem;
    color: #636e72;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: #ffffff;
}

.benefits-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    font-size: 3rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.25rem;
    color: #636e72;
    text-align: center;
    margin-bottom: 4rem;
}

.product-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.product-item {
    flex: 1;
    min-width: 350px;
    max-width: 420px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 280px;
    display: block;
}

.product-item h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    padding: 1.5rem 1.5rem 1rem;
}

.product-item p {
    padding: 0 1.5rem;
    color: #636e72;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    color: #636e72;
    font-size: 0.95rem;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #e17055;
    padding: 1rem 1.5rem;
    text-align: center;
}

.select-product-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #e17055;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-product-btn:hover {
    background: #d35846;
}

.form-section {
    padding: 6rem 2rem;
    background: #f0f3f7;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #636e72;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 1.2rem;
    background: #00b894;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #00a085;
}

.final-reassurance {
    padding: 5rem 2rem;
    background: #ffffff;
}

.final-reassurance h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.final-reassurance p {
    font-size: 1.15rem;
    color: #636e72;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff5e6;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.7;
}

.references-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

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

.references-container h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.references-list {
    list-style-position: inside;
    color: #636e72;
}

.references-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.references-list a {
    color: #0984e3;
    text-decoration: none;
}

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

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 2rem;
}

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

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e17055;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .offset-layout,
    .split-container {
        flex-direction: column;
        gap: 2rem;
    }

    .text-block-left,
    .split-text {
        padding-right: 0;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .product-showcase {
        flex-direction: column;
        align-items: center;
    }

    .product-item {
        max-width: 100%;
    }

    .section-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

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