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

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

.cookie-banner.show {
    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;
    margin: 0;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

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

.btn-cookie {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #357abd;
}

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

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #e8e8e8;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.insight-visual {
    background-color: #f5f5f5;
    padding: 0;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.split-image {
    flex: 0 0 45%;
    background-color: #ddd;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

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

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

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

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

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

.testimonials-inline {
    padding: 80px 40px;
    background-color: #1a1a1a;
}

.testimonial {
    margin-bottom: 40px;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 14px;
    color: #aaa;
}

.services-preview {
    padding: 100px 40px;
    background-color: #f5f5f5;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card-large {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.service-includes {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-bottom: 24px;
}

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

.btn-select:hover {
    background-color: #357abd;
}

.btn-select.selected {
    background-color: #27ae60;
}

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

.benefits-reveal h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.benefits-asymmetric {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.benefit-major {
    flex: 1.5;
    min-width: 320px;
}

.benefit-major h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefit-major p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.benefit-group {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-minor {
    padding: 28px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a90e2;
}

.benefit-minor h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-minor p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.how-it-works {
    padding: 100px 40px;
    background-color: #f5f5f5;
}

.how-it-works h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

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

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

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

.form-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

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

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

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

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

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

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

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

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.scientific-backing {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.scientific-backing h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.scientific-backing p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.scientific-backing a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.scientific-backing a:hover {
    text-decoration: underline;
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

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

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

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

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

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

.footer-references {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 8px;
}

.footer-references ol li a {
    color: #4a90e2;
    text-decoration: none;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.footer-business-model {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.page-header {
    padding: 80px 40px 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.lead {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.about-story {
    padding: 0;
    background-color: #ffffff;
}

.values-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.team-approach {
    padding: 100px 40px;
    background-color: #ffffff;
}

.team-approach h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.team-approach p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.production-info {
    padding: 0;
    background-color: #f5f5f5;
}

.numbers-section {
    padding: 100px 40px;
    background-color: #1a1a1a;
}

.numbers-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.numbers-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.number-block {
    text-align: center;
    padding: 30px;
}

.number {
    font-size: 56px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 12px;
}

.number-label {
    font-size: 16px;
    color: #aaa;
}

.sustainability-note {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.sustainability-note h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.sustainability-note p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.service-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail.alternate {
    background-color: #f9f9f9;
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.service-detail-image {
    flex: 0 0 50%;
    background-color: #ddd;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-includes-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 32px;
}

.service-includes-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.service-includes-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.sizing-info,
.care-instructions,
.returns-policy {
    padding: 80px 40px;
    background-color: #f5f5f5;
}

.sizing-info h2,
.care-instructions h2,
.returns-policy h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
}

.sizing-info p,
.care-instructions p,
.returns-policy p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.care-list {
    max-width: 700px;
    margin: 32px auto;
    padding-left: 20px;
}

.care-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.contact-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.info-block .email-display {
    color: #555;
    font-weight: 500;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
    border-radius: 8px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.visit-us {
    padding: 80px 40px;
    background-color: #f5f5f5;
}

.visit-us h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
}

.visit-us p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

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

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.selected-service-display {
    background-color: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.selected-service-display h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.selected-service-display p {
    font-size: 16px;
    color: #666;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page .last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.legal-page a {
    color: #4a90e2;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 30px;
    }

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

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

    .split-content {
        padding: 40px 30px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

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

    .services-showcase {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-container {
        flex-direction: column;
    }

    .service-detail-content {
        padding: 40px 30px;
    }

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

    .page-header h1 {
        font-size: 36px;
    }
}