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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6b4e71;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6b4e71;
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 20px;
}

.hero-visual {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #6b4e71;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #553d59;
    transform: translateY(-2px);
}

.intro-narrative {
    padding: 80px 20px;
    background: #f9f6f8;
}

.narrative-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.opening-line {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b4e71;
    margin-bottom: 30px;
}

.narrative-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

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

.story-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #6b4e71;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.story-image {
    flex: 1;
    background-color: #f0e9ed;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.problem-amplification {
    padding: 80px 20px;
    background: #f3eff1;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #6b4e71;
    text-align: center;
}

.problem-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #444;
}

.insight-box {
    background: #ffffff;
    padding: 25px;
    border-left: 4px solid #6b4e71;
    margin-top: 35px;
}

.insight-text {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
}

.insight-text a {
    color: #6b4e71;
    text-decoration: none;
}

.approach-reveal {
    padding: 0;
    position: relative;
}

.approach-container {
    position: relative;
    height: 700px;
}

.approach-image-main {
    width: 100%;
    height: 100%;
    background-color: #e0d5dd;
}

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

.approach-text-overlay {
    position: absolute;
    bottom: 50px;
    left: 50px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.93);
    padding: 40px;
    border-radius: 8px;
}

.approach-text-overlay h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #6b4e71;
}

.approach-text-overlay p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #444;
}

.trust-builder {
    padding: 100px 20px;
    background: #fdfbfc;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #6b4e71;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.services-reveal {
    padding: 100px 20px;
    background: #f9f6f8;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #6b4e71;
}

.services-intro p {
    font-size: 1.15rem;
    color: #666;
}

.services-visual-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-visual-card {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.service-image-wrapper {
    flex: 1;
    background-color: #e8dce4;
}

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

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #6b4e71;
}

.service-details p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #555;
}

.service-includes {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #6b4e71;
    margin: 20px 0;
}

.select-service {
    padding: 14px 30px;
    background: #6b4e71;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.select-service:hover {
    background: #553d59;
    transform: translateY(-2px);
}

.order-form-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #6b4e71;
}

.selected-service-display,
.selected-price-display {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #444;
}

.selected-service-display span,
.selected-price-display span {
    font-weight: 600;
    color: #6b4e71;
}

.order-form {
    background: #f9f6f8;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #6b4e71;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

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

.scientific-backing {
    padding: 80px 20px;
    background: #f3eff1;
}

.backing-content {
    max-width: 800px;
    margin: 0 auto;
}

.backing-content h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #6b4e71;
    text-align: center;
}

.backing-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #555;
}

.backing-content a {
    color: #6b4e71;
    text-decoration: none;
}

.final-cta-visual {
    position: relative;
    height: 500px;
}

.final-cta-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #e0d5dd;
}

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

.final-cta-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}

.final-cta-overlay h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #6b4e71;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.footer {
    background: #2c2c2c;
    color: #cccccc;
    padding: 60px 20px 30px;
}

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

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-references h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-references p {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #3a3a3a;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #6b4e71;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #553d59;
}

.cookie-btn.reject {
    background: #666;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #555;
}

.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #6b4e71 0%, #9b7ba1 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #6b4e71;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #6b4e71;
}

.page-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-content ul li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #555;
}

.contact-info-box {
    background: #f9f6f8;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #6b4e71;
}

.contact-info-box p {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #444;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #6b4e71;
}

.service-item p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #555;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b4e71;
    margin-top: 15px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #f9f6f8;
    border-radius: 8px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #6b4e71;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 20px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background: #6b4e71;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #553d59;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

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

    .service-visual-card {
        flex-direction: column;
    }

    .service-visual-card:nth-child(even) {
        flex-direction: column;
    }

    .approach-text-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin: 20px;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}