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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b5a3c;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 5px 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 80px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-text-overlay p {
    font-size: 20px;
    line-height: 1.7;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 100px 20px;
    background: #faf8f5;
}

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

.story-intro h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #8b5a3c;
    line-height: 1.3;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.problem-section {
    padding: 80px 20px;
}

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

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.text-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.visual-content {
    flex: 1;
    background: #f5e8dc;
}

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

.insight-reveal {
    padding: 90px 20px;
    background: #e8f4f8;
}

.insight-reveal h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #34495e;
}

.insight-reveal p {
    font-size: 17px;
    margin-bottom: 22px;
    line-height: 1.8;
}

.insight-reveal a {
    color: #3498db;
    text-decoration: none;
}

.insight-reveal a:hover {
    text-decoration: underline;
}

.product-showcase {
    padding: 100px 20px;
}

.centered-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #8b5a3c;
}

.product-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.product-card {
    width: 380px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #f9f5f0;
}

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

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.cta-inline {
    background: #8b5a3c;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.cta-inline:hover {
    background: #6d4530;
}

.testimonials-inline {
    padding: 90px 20px;
    background: #f0f4f1;
}

.testimonials-inline h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.testimonial-block {
    margin-bottom: 45px;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #8b5a3c;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.ingredients-section {
    padding: 90px 20px;
}

.ingredients-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #34495e;
}

.ingredients-section h3 {
    font-size: 24px;
    margin: 35px 0 20px 0;
    color: #8b5a3c;
}

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

.ingredient-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
}

.pricing-reveal {
    padding: 100px 20px;
    background: #faf8f5;
}

.pricing-reveal h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #8b5a3c;
    text-align: center;
}

.pricing-reveal > .narrow-content > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
}

.price-comparison {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-item {
    background: #ffffff;
    padding: 40px 30px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.price-item h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #8b5a3c;
    margin-bottom: 10px;
}

.price-detail {
    font-size: 14px;
    color: #7f8c8d;
}

.form-section {
    padding: 100px 20px;
    background: #e8f4f8;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #2c3e50;
    text-align: center;
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #34495e;
}

.form-container input,
.form-container select {
    width: 100%;
    padding: 14px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.submit-btn {
    width: 100%;
    background: #8b5a3c;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px 20px;
}

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

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

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
}

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

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

.references {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.references h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
}

.references p {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.references a {
    color: #3498db;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

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

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

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

.cookie-reject:hover {
    background: #666;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    background: #ffffff;
    padding: 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #8b5a3c;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #6d4530;
}

.page-header {
    margin-top: 80px;
    padding: 80px 20px;
    background: #8b5a3c;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-content {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 30px;
    margin: 40px 0 20px 0;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #34495e;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.page-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-info {
    padding: 80px 20px;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #8b5a3c;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 20px;
}

.service-item {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b5a3c;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 15px;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-text-overlay p {
        font-size: 16px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .product-card {
        width: 100%;
    }

    .price-comparison {
        flex-direction: column;
    }

    .price-item {
        width: 100%;
    }
}