* {
    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;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-ad-label {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    color: white;
    text-align: center;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.section-narrative {
    padding: 120px 40px;
    background: #ffffff;
}

.narrative-container {
    max-width: 900px;
    margin: 0 auto;
}

.narrative-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
    line-height: 1.3;
}

.narrative-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

.section-visual-split {
    padding: 0;
    background: #f8f8f8;
}

.split-container {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.section-immersive {
    position: relative;
    min-height: 500px;
}

.immersive-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.immersive-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 100px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.immersive-content {
    max-width: 900px;
    text-align: center;
    color: white;
}

.immersive-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.3;
}

.immersive-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.section-trust {
    padding: 100px 40px;
    background: #ffffff;
}

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

.trust-header h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-size: 15px;
}

.testimonial-author span {
    color: #666;
    font-size: 13px;
}

.section-benefits {
    padding: 100px 40px;
    background: #f5f5f5;
}

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

.benefits-container h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #ddd;
}

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

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.section-collections {
    padding: 100px 40px;
    background: #ffffff;
}

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

.collections-intro {
    text-align: center;
    margin-bottom: 60px;
}

.collections-intro h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.collections-intro p {
    font-size: 18px;
    color: #555;
}

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

.collection-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #555;
}

.order-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #333;
}

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

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

.section-disclaimer {
    padding: 60px 40px;
    background: #fff9e6;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-container p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 8px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
    }

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

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