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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    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;
}

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

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

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

.cookie-buttons button {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#cookie-accept {
    background: #8b5a3c;
    color: #ffffff;
}

#cookie-accept:hover {
    background: #6d4730;
}

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

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

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

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    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: 22px;
    font-weight: bold;
    color: #8b5a3c;
    letter-spacing: 1px;
}

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

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

.nav-links a:hover {
    color: #8b5a3c;
}

.ad-label {
    font-size: 11px;
    color: #888;
    font-style: italic;
    margin-left: 15px;
    border-left: 1px solid #ddd;
    padding-left: 15px;
}

.hero-visual {
    margin-top: 0;
}

.hero-image {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-color: #f5e6d3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
}

.story-intro {
    padding: 120px 20px;
    background: #faf8f5;
}

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

.lead-text {
    font-size: 26px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4a4a4a;
    font-style: italic;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a5a5a;
}

.image-float-left {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
}

.image-float-left img {
    width: 45%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8dcc8;
}

.float-content {
    width: 50%;
}

.float-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #8b5a3c;
    font-weight: 400;
    line-height: 1.4;
}

.float-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.insight-block {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f0e8dc 0%, #e8dcc8 100%);
}

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

.insight-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #3a3a3a;
    font-weight: 400;
}

.insight-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.insight-item {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.insight-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8b5a3c;
}

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

.trust-story {
    display: flex;
    min-height: 600px;
}

.story-visual {
    width: 55%;
    background-size: cover;
    background-position: center;
    background-color: #d4c4b0;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 50px;
}

.story-overlay h2 {
    font-size: 44px;
    color: #ffffff;
    background: rgba(139, 90, 60, 0.85);
    padding: 30px 40px;
    border-radius: 6px;
    font-weight: 400;
}

.story-text {
    width: 45%;
    padding: 80px 60px;
    background: #faf8f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.8;
}

.testimonials-inline {
    padding: 100px 40px;
    background: #ffffff;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    margin-bottom: 50px;
    padding: 30px;
    border-left: 4px solid #8b5a3c;
    background: #faf8f5;
}

.quote {
    font-size: 19px;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.author {
    font-size: 15px;
    color: #8b5a3c;
    font-weight: 600;
}

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

.benefits-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #3a3a3a;
    font-weight: 400;
}

.benefits-stagger {
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-large,
.benefit-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.benefit-offset {
    flex-direction: row-reverse;
    margin-left: 100px;
}

.benefit-large img,
.benefit-offset img {
    width: 50%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d9cdb8;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #8b5a3c;
    font-weight: 400;
}

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

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

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

.science-content h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #3a3a3a;
    font-weight: 400;
}

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

.citation {
    color: #8b5a3c;
    text-decoration: none;
    font-weight: 600;
    margin-left: 3px;
}

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

.services-pricing {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f9f6f2 0%, #f0e8dc 100%);
}

.services-pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #3a3a3a;
    font-weight: 400;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 24px);
    min-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8dcc8;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 25px 10px;
    color: #8b5a3c;
    font-weight: 400;
}

.service-card p {
    font-size: 15px;
    margin: 0 25px 15px;
    color: #555;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #8b5a3c;
    margin: 20px 25px;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #8b5a3c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #6d4730;
}

.order-form-section {
    padding: 80px 40px;
    background: #faf8f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #3a3a3a;
    font-weight: 400;
}

.selected-service-display {
    font-size: 18px;
    color: #8b5a3c;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #3a3a3a;
    font-weight: 600;
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #8b5a3c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #6d4730;
}

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

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #8b5a3c;
    border-radius: 4px;
}

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

footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d4c4b0;
    font-weight: 400;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #d4c4b0;
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .ad-label {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 10px;
    }

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

    .image-float-left {
        flex-direction: column;
        padding: 60px 30px;
    }

    .image-float-left img,
    .float-content {
        width: 100%;
    }

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

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

    .story-visual,
    .story-text {
        width: 100%;
    }

    .benefit-large,
    .benefit-offset {
        flex-direction: column;
        margin-left: 0;
    }

    .benefit-large img,
    .benefit-offset img {
        width: 100%;
    }

    .service-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }
}