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

:root {
    --primary-color: #d4574e;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #2c3e50;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.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 {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: #c44a42;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: white;
    color: var(--secondary-color);
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    z-index: 1000;
    max-width: 1100px;
    width: 90%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 12px;
}

.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2c3e50;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-light);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 300;
}

.story-intro {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.narrow-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.problem-section {
    padding: 100px 20px;
    background: white;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.insight-section {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: var(--text-light);
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.insight-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.solution-reveal {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.centered-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 60px;
}

.three-column-benefits {
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    gap: 40px;
}

.benefit-card {
    flex: 1;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.benefit-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: var(--text-dark);
}

.benefit-card p {
    margin: 0 25px 25px;
    line-height: 1.6;
    color: #555;
}

.trust-building {
    padding: 100px 20px;
    background: white;
}

.trust-building h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.testimonial-block {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.testimonial-block blockquote {
    font-style: italic;
}

.testimonial-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-block footer {
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

.products-overview {
    padding: 100px 20px;
    background: var(--bg-light);
}

.wide-content {
    max-width: 1300px;
    margin: 0 auto;
}

.products-overview h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.product-card {
    flex: 1 1 calc(50% - 20px);
    max-width: 600px;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.product-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

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

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-info p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.product-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-button {
    padding: 15px 35px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.cta-button:hover {
    background: #c44a42;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.science-section {
    padding: 80px 20px;
    background: white;
}

.science-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.science-section a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.science-section a:hover {
    text-decoration: underline;
}

.final-cta {
    padding: 100px 20px;
    background: var(--accent-color);
    color: var(--text-light);
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3rem;
}

.order-form-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-container h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.disclaimer-section {
    padding: 60px 20px;
    background: #f0f0f0;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.main-footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-column p {
    line-height: 1.6;
    color: #ccc;
}

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

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

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

.footer-column a:hover {
    color: var(--accent-color);
}

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

.references-list li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

.contact-page {
    padding: 140px 20px 80px;
    min-height: 100vh;
}

.contact-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-block p {
    line-height: 1.6;
    color: #555;
}

.about-page {
    padding: 140px 20px 80px;
}

.about-hero {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin: 60px 0 30px;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-page {
    padding: 140px 20px 80px;
}

.services-header {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-content p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-page {
    padding: 140px 20px 80px;
    background: var(--bg-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-page {
    padding: 140px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-content .cta-button {
    width: auto;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .split-layout {
        flex-direction: column;
    }

    .three-column-benefits {
        flex-direction: column;
    }

    .product-card {
        flex: 1 1 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
    }

    .floating-nav {
        width: 95%;
        padding: 10px 15px;
    }

    .nav-container {
        flex-wrap: wrap;
    }

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