* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-accept {
    background: #4a9d8e;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3d8275;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.nav-ad-notice {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #4a9d8e;
}

.hero-visual {
    margin-top: 70px;
    width: 100%;
    height: 90vh;
    position: relative;
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    max-width: 700px;
    opacity: 0.95;
}

.story-intro {
    padding: 120px 40px;
    background: #f8f9fa;
}

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

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    color: #2c2c2c;
    font-weight: 300;
}

.visual-statement {
    padding: 0;
}

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

.visual-left,
.visual-right {
    flex: 1;
}

.visual-left {
    background-color: #95a5a6;
}

.visual-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.visual-right h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.visual-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.visual-right a {
    color: #4a9d8e;
    text-decoration: none;
    font-weight: 500;
}

.visual-right a:hover {
    text-decoration: underline;
}

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

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

.insight-heading {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #4a9d8e;
}

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

.image-immersion {
    width: 100%;
    height: 70vh;
    background-color: #34495e;
}

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

.testimonial-flow {
    padding: 100px 40px;
    background: #ecf0f1;
}

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

.testimonial {
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #4a9d8e;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: #666;
    font-weight: 500;
}

.science-backed {
    padding: 100px 40px;
    background: #ffffff;
}

.science-content {
    max-width: 900px;
    margin: 0 auto;
}

.science-content h2 {
    font-size: 44px;
    margin-bottom: 32px;
    font-weight: 600;
    color: #1a1a1a;
}

.science-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.science-content a {
    color: #4a9d8e;
    text-decoration: none;
    font-weight: 500;
}

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

.collection-reveal {
    padding: 120px 40px;
    background: #f8f9fa;
}

.reveal-header {
    text-align: center;
    margin-bottom: 80px;
}

.reveal-header h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.reveal-header p {
    font-size: 20px;
    color: #666;
}

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

.collection-item {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-8px);
}

.collection-image {
    width: 100%;
    height: 300px;
    background-color: #bdc3c7;
}

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

.collection-item h3 {
    font-size: 26px;
    margin: 24px 24px 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.collection-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #4a4a4a;
}

.collection-item .price {
    font-size: 22px;
    font-weight: 700;
    color: #4a9d8e;
    margin: 16px 24px;
}

.cta-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #4a9d8e;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-select:hover {
    background: #3d8275;
}

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

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #666;
}

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

.btn-submit:hover {
    background: #3d8275;
}

.final-trust {
    padding: 100px 40px;
    background: #ecf0f1;
}

.trust-elements {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #fff9e6;
    border-top: 3px solid #f1c40f;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #4a9d8e;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

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

.footer-col ul li a:hover {
    color: #4a9d8e;
}

.references li {
    margin-bottom: 16px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

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

    .hero-subtitle {
        font-size: 18px;
    }

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

    .visual-right {
        padding: 60px 30px;
    }

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

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-ad-notice {
        display: none;
    }
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: #4a9d8e;
    font-weight: 600;
}

.thanks-container p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-container .highlight {
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #4a9d8e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-container a:hover {
    background: #3d8275;
}

.contact-page {
    padding: 140px 40px 100px;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 20px;
    color: #666;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1;
    min-width: 280px;
}

.contact-info-item h2 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #4a9d8e;
}

.contact-info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.services-page {
    padding: 140px 40px 100px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.services-header p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-item {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #bdc3c7;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.service-content .price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9d8e;
    margin-bottom: 24px;
    display: block;
}

.service-content .features {
    margin: 24px 0;
}

.service-content .features li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.service-content .features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9d8e;
    font-weight: bold;
}

.about-page {
    padding: 140px 40px 100px;
}

.about-hero {
    max-width: 1000px;
    margin: 0 auto 100px;
    text-align: center;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 32px;
    font-weight: 600;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 22px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.legal-page {
    padding: 140px 40px 100px;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
}

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 32px;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.legal-container ul {
    margin: 16px 0 16px 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }
}