* {
    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: #1a1a1a;
    background: #ffffff;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    background: #4CAF50;
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #45a049;
}

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

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

.header-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #4CAF50;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 12px;
}

.hero-visual {
    margin-top: 100px;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-image-container 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;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.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: #f9f9f9;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.problem-amplify {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.insight-list {
    list-style: none;
    margin: 2rem 0;
}

.insight-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.125rem;
    color: #444;
}

.insight-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.5rem;
}

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

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

.insight-reveal {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.center-heading {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.center-text {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #ccc;
}

.visual-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.grid-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #2c2c2c;
    padding: 1.5rem;
    border-radius: 8px;
}

.grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    background: #3c3c3c;
}

.grid-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.grid-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.trust-build {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

.trust-build > .content-narrow > p {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #444;
}

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #4CAF50;
}

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

.testimonial-inline p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    color: #666;
    font-size: 0.95rem;
}

.science-backing {
    padding: 4rem 2rem;
    background: #ffffff;
}

.science-backing h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.science-backing p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.citation {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.25rem;
}

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

.benefits-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.asymmetric-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-block {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-block.offset {
    margin-left: 10%;
}

.benefit-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #444;
}

.collection-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.collection-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e5e5e5;
}

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.btn-select {
    width: 100%;
    padding: 0.875rem;
    background: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #45a049;
}

.order-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.order-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.order-section > .content-narrow > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #ccc;
}

.order-form {
    background: #2c2c2c;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 1rem;
    background: #3c3c3c;
    color: #ffffff;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #45a049;
}

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

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

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #4CAF50;
}

.references {
    list-style: decimal;
    padding-left: 1.25rem;
}

.references li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.page-hero {
    margin-top: 100px;
}

.page-hero .hero-image-container {
    height: 500px;
}

.about-content {
    padding: 5rem 2rem;
    background: #ffffff;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.values-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

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

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.process-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.commitment-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.services-intro {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.services-detail {
    padding: 3rem 2rem;
    background: #f9f9f9;
}

.service-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e5e5e5;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #444;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4CAF50;
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #4CAF50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #45a049;
}

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

.contact-page {
    padding: 2rem;
    background: #ffffff;
}

.contact-info {
    margin-top: 3rem;
}

.contact-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #444;
}

.thanks-page {
    background: #ffffff;
    min-height: 60vh;
}

.legal-page {
    padding: 2rem;
    background: #ffffff;
    margin-top: 100px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #444;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #444;
}

.legal-content a {
    color: #4CAF50;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

    .center-heading {
        font-size: 2rem;
    }

    .benefit-block.offset {
        margin-left: 0;
    }

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

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

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .header-floating {
        border-radius: 8px;
        width: 95%;
    }

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

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

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