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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background: #fef3c7;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #92400e;
    border-bottom: 1px solid #fbbf24;
}

.header-minimal {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

.nav-minimal {
    display: flex;
    gap: 30px;
}

.nav-minimal a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-minimal a:hover {
    color: #2563eb;
}

.hero-story {
    position: relative;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    background: #cbd5e0;
    overflow: hidden;
}

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

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-content-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 20px;
    color: #f7fafc;
    line-height: 1.5;
}

.content-story {
    padding: 60px 0;
}

.story-block {
    margin-bottom: 60px;
}

.story-block h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.3;
}

.story-block p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.citation {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.inline-image-section {
    margin: 60px 0;
    background: #f7fafc;
    padding: 40px;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-inline {
    padding: 80px 0;
    background: #edf2f7;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 22px;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: #718096;
    font-weight: 600;
}

.insight-section {
    padding: 80px 0;
}

.insight-section h2 {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 50px;
    text-align: center;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ingredient-item h3 {
    font-size: 24px;
    color: #2563eb;
    margin-bottom: 12px;
}

.ingredient-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.visual-benefit {
    padding: 80px 0;
    background: #f7fafc;
}

.benefit-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefit-image {
    flex: 1;
    background: #cbd5e0;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.benefit-content {
    flex: 1;
}

.benefit-content h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 30px;
    line-height: 1.3;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 18px;
    color: #4a5568;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.trust-section {
    padding: 80px 0;
}

.trust-section h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
    text-align: center;
}

.trust-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.7;
}

.trust-image {
    background: #e2e8f0;
    padding: 30px;
}

.trust-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.products-reveal {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #f7fafc);
}

.products-reveal h2 {
    font-size: 42px;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

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

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

.product-card h3 {
    font-size: 22px;
    color: #1a202c;
    padding: 20px 20px 10px 20px;
}

.product-card p {
    font-size: 15px;
    color: #4a5568;
    padding: 0 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-price {
    font-size: 28px;
    color: #2563eb;
    font-weight: 700;
    padding: 10px 20px;
}

.btn-select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 14px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1d4ed8;
}

.form-section {
    padding: 80px 0;
    background: #edf2f7;
}

.form-section h2 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 20px;
    text-align: center;
}

.form-section > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
    text-align: center;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    color: #2d3748;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: #f7fafc;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #059669;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fef3c7;
}

.disclaimer-text {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

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

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

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.references-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #4a5568;
}

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

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

.references-list li {
    font-size: 13px;
    color: #cbd5e0;
    margin-bottom: 10px;
    line-height: 1.5;
}

.references-list li a {
    color: #60a5fa;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

.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: #60a5fa;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #059669;
}

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

.btn-cookie-reject:hover {
    background: #4b5563;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 20px;
}

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

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #1d4ed8;
}

.page-header {
    padding: 60px 0;
    background: #f7fafc;
    text-align: center;
}

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

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

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-section h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-section p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.content-section ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-info {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

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

.contact-info p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.service-item h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    color: #2563eb;
    font-weight: 700;
}

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

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

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

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

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

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

    .service-item {
        flex: 1 1 100%;
    }
}
