* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.cookie-accept {
    background: #2a7ae2;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1e5bba;
}

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

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

.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
}

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

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

.main-nav a:hover {
    color: #2a7ae2;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 22px;
    color: #ffffff;
    font-weight: 300;
    max-width: 600px;
}

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

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

.opening-line {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333333;
}

.citation {
    color: #2a7ae2;
    text-decoration: none;
    font-weight: 600;
}

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

.insight-visual {
    flex: 0 0 500px;
    background-color: #e5e5e5;
}

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

.problem-amplification {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #ffffff;
}

.centered-block {
    max-width: 1200px;
    margin: 0 auto;
}

.centered-block h2 {
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #2a7ae2;
}

.problem-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
}

.trust-elements {
    padding: 100px 40px;
    background: #f5f5f5;
}

.testimonial-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-item blockquote {
    background: #ffffff;
    padding: 50px;
    border-left: 6px solid #2a7ae2;
    font-size: 19px;
    line-height: 1.7;
    color: #333333;
}

.testimonial-item footer {
    margin-top: 20px;
    font-size: 15px;
    color: #666666;
    font-style: normal;
}

.benefits-reveal {
    padding: 120px 40px;
    background: #ffffff;
}

.benefits-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.benefit-image {
    flex: 0 0 480px;
    height: 600px;
    object-fit: cover;
    background-color: #e5e5e5;
}

.benefit-text {
    flex: 1;
    padding-top: 20px;
}

.benefit-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

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

.benefit-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

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

.collection-showcase {
    padding: 100px 40px;
    background: #fafafa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 19px;
    color: #666666;
}

.collection-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.collection-card {
    flex: 1;
    min-width: 340px;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2a7ae2;
    margin-bottom: 25px;
}

.select-service-btn {
    width: 100%;
    padding: 16px 30px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #2a7ae2;
}

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

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

.form-container h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666666;
    margin-bottom: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a7ae2;
}

.submit-btn {
    padding: 18px 40px;
    background: #2a7ae2;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.submit-btn:hover {
    background: #1e5bba;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    text-align: center;
}

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

.footer-columns {
    max-width: 1300px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 10px;
}

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

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

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

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

.scientific-references {
    max-width: 1300px;
    margin: 0 auto 60px;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

.scientific-references h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.references-list {
    list-style-position: inside;
    font-size: 13px;
    line-height: 1.8;
    color: #cccccc;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: #2a7ae2;
    text-decoration: none;
}

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

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

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

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

    .insight-visual {
        flex: 1;
        width: 100%;
    }

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

    .benefit-image {
        flex: 1;
        width: 100%;
        height: 400px;
    }

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

    .collection-cards {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }
}