* {
    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: #1a1a1a;
    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;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

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

.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #e67e22;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.hero-story {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-text-box {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-text-box h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.35rem;
    line-height: 1.7;
    opacity: 0.95;
}

.story-section {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

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

.story-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-narrow h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1rem;
    color: #34495e;
}

.story-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #34495e;
}

.inline-image-block {
    margin: 3rem 0;
    background-color: #bdc3c7;
}

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

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

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-left {
    flex: 1;
}

.insight-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.insight-left p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.benefit-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.benefit-list li {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #27ae60;
}

.insight-right {
    flex: 1;
    background-color: #95a5a6;
}

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

.trust-builder {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    opacity: 0.8;
}

.composition-section {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.composition-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.composition-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.composition-narrow > p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #34495e;
}

.ingredient-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.ingredient-item {
    flex: 1;
    min-width: 200px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ingredient-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #e67e22;
}

.ingredient-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #34495e;
}

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

.ingredient-item a:hover {
    text-decoration: underline;
}

.composition-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #ffffff;
    border-left: 4px solid #27ae60;
    font-size: 1rem;
}

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

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

.benefits-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-major,
.benefit-minor {
    background: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.benefit-major {
    flex-direction: row;
}

.benefit-minor {
    padding: 2rem;
}

.benefit-major img {
    width: 40%;
    height: 300px;
    object-fit: cover;
    background-color: #95a5a6;
}

.benefit-text {
    flex: 1;
    padding: 2rem;
}

.benefit-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
}

.cta-embedded {
    padding: 4rem 2rem;
    background: #e67e22;
}

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

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #e67e22;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.services-selection {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.services-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.services-intro {
    font-size: 1.15rem;
    text-align: center;
    color: #34495e;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 3px solid #e67e22;
}

.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e67e22;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.service-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
    margin: 0 1.5rem 1rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 1.5rem;
}

.btn-select {
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #229954;
}

.order-form-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

.form-intro {
    font-size: 1.1rem;
    color: #34495e;
    text-align: center;
    margin-bottom: 3rem;
}

.order-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 6rem 2rem;
    background: #34495e;
    text-align: center;
}

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

.final-cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.25rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

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

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

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

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

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

.footer-column ul li a:hover {
    color: #e67e22;
}

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

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

    .insight-wrapper {
        flex-direction: column;
    }

    .testimonials-flow {
        flex-direction: column;
    }

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

    .benefit-major img {
        width: 100%;
    }

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