* {
    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-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2a2a2a;
}

.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;
    max-width: 800px;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

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

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

.narrow-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #2a2a2a;
}

.visual-section {
    display: flex;
    min-height: 600px;
}

.visual-section.reverse {
    flex-direction: row-reverse;
}

.image-half {
    flex: 1;
    background-color: #e8e8e8;
}

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

.content-half {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.content-half h2 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #000;
}

.content-half p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.immersive-benefit {
    width: 100%;
    height: 70vh;
}

.benefit-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.benefit-overlay-content {
    background: rgba(0, 0, 0, 0.65);
    padding: 60px 50px;
    max-width: 600px;
    color: #ffffff;
    border-left: 4px solid #ffffff;
}

.benefit-overlay-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.benefit-overlay-content p {
    font-size: 17px;
    line-height: 1.7;
}

.insight-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 40px;
    margin-bottom: 35px;
    text-align: center;
}

.testimonial-flow {
    padding: 80px 20px;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.testimonial-card {
    max-width: 650px;
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    color: #2a2a2a;
}

.testimonial-card span {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.science-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.science-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.science-section p {
    font-size: 17px;
    line-height: 1.8;
}

.science-section a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

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

.collections-preview {
    padding: 100px 20px;
    background-color: #ffffff;
}

.collections-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.collection-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    max-width: 500px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.collection-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
}

.collection-card p {
    font-size: 15px;
    color: #555;
    margin: 0 25px 20px 25px;
    line-height: 1.6;
}

.collection-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 25px 20px 25px;
}

.cta-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 15px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-select:hover {
    background-color: #333;
}

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

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

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

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

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

.form-group input {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0066cc;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.final-trust {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.final-trust h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.final-trust p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px 20px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-references p {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-references a {
    color: #6699cc;
    text-decoration: none;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 25px;
    background-color: #252525;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #aaa;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #6699cc;
    text-decoration: none;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0052a3;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 0;
    }

    .nav-links {
        flex-direction: row;
    }

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

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

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

    .visual-section.reverse {
        flex-direction: column;
    }

    .content-half {
        padding: 50px 30px;
    }

    .content-half h2 {
        font-size: 28px;
    }

    .form-container {
        padding: 35px 25px;
    }

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

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