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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5a4a42;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.hero-image {
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.88);
    padding: 4rem 3rem;
    max-width: 700px;
    text-align: center;
    border-radius: 2px;
}

.hero-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #6a5a52;
    font-weight: 300;
}

.story-section {
    padding: 5rem 2rem;
    background: #fafaf8;
}

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

.opening-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #5a5a5a;
}

.story-section img {
    width: 100%;
    margin: 3rem 0;
    border-radius: 4px;
}

.story-section h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    color: #3a3a3a;
    font-weight: 600;
}

.emphasis-text {
    font-size: 1.25rem;
    color: #6a5a52;
    font-style: italic;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #a67c6d;
    margin: 2.5rem 0;
}

.problem-section {
    padding: 5rem 0;
    background: #ffffff;
}

.split-layout {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.split-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.split-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #5a5a5a;
}

.split-image {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.insight-section {
    padding: 5rem 2rem;
    background: #f8f6f4;
}

.insight-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #3a3a3a;
}

.insight-section p {
    font-size: 1.12rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.citation {
    color: #8b6f5c;
    text-decoration: none;
    font-weight: 600;
}

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

.trust-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.trust-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #3a3a3a;
}

.testimonials-flow {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: #fafaf8;
    padding: 2.5rem;
    border-radius: 4px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-left: 4px solid #d4b5a7;
}

.testimonial-card p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

.benefits-section {
    padding: 5rem 2rem;
    background: #f4f0ed;
}

.benefits-section h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #3a3a3a;
}

.benefit-item {
    margin-bottom: 3rem;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #5a4a42;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.benefits-section img {
    width: 100%;
    margin-top: 3rem;
    border-radius: 4px;
}

.services-intro {
    padding: 5rem 2rem 3rem;
    background: #ffffff;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.services-intro p {
    font-size: 1.15rem;
    color: #6a6a6a;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 3rem 2rem 5rem;
    background: #ffffff;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: #fafaf8;
    border-radius: 4px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 260px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #3a3a3a;
}

.service-card p {
    font-size: 1rem;
    color: #6a6a6a;
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b6f5c;
    margin: 0 1.5rem 1.5rem;
}

.select-service-btn {
    background: #a67c6d;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 500;
}

.select-service-btn:hover {
    background: #8b6f5c;
}

.select-service-btn:active {
    background: #7a5e4f;
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f6f4;
}

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #3a3a3a;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
}

.main-form {
    max-width: 580px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.selected-service-display {
    background: #e8f4f0;
    padding: 1.2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid #6a9080;
}

.selected-service-display p {
    font-size: 1.05rem;
    color: #3a3a3a;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #4a4a4a;
    font-size: 1rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    background: #8b6f5c;
    color: #ffffff;
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #7a5e4f;
}

.submit-btn:active {
    background: #6a4e3f;
}

.composition-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.composition-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.composition-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.ingredients-list {
    list-style-position: inside;
    font-size: 1.05rem;
    color: #5a5a5a;
}

.ingredients-list li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #f9f7f5;
}

.disclaimer {
    font-size: 0.95rem;
    color: #7a7a7a;
    line-height: 1.6;
    font-style: italic;
}

.main-footer {
    background: #3a3a3a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

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

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

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

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

.references {
    list-style-position: inside;
    font-size: 0.9rem;
}

.references li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 2000;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #5a8070;
}

.cookie-btn.accept:active {
    background: #4a7060;
}

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

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

.cookie-btn.reject:active {
    background: #444;
}

.page-header {
    background: #f4f0ed;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #6a6a6a;
}

.page-content {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #3a3a3a;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #4a4a4a;
}

.page-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.8rem;
    color: #5a5a5a;
    font-size: 1.05rem;
}

.contact-info {
    background: #fafaf8;
    padding: 2.5rem;
    border-radius: 4px;
    margin: 3rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    font-size: 1.08rem;
}

.thanks-message {
    text-align: center;
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-message h1 {
    font-size: 3rem;
    color: #6a9080;
    margin-bottom: 1.5rem;
}

.thanks-message p {
    font-size: 1.25rem;
    color: #5a5a5a;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.thanks-message a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #8b6f5c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.thanks-message a:hover {
    background: #7a5e4f;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .ad-disclosure {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .split-image {
        min-height: 300px;
    }

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

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

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