:root {
    --primary: #8B5A6B;
    --primary-dark: #6B3A4B;
    --secondary: #D4A574;
    --accent: #E8D5C4;
    --bg-light: #FDF8F5;
    --bg-cream: #F5EDE6;
    --bg-rose: #F9F0ED;
    --text-dark: #2D2A2E;
    --text-muted: #6B6369;
    --white: #FFFFFF;
    --border: #E5DDD7;
    --shadow: rgba(139, 90, 107, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 6px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-cream);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 24px;
}

.hero-tag {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background-color: var(--bg-cream);
}

.section {
    padding: 100px 0;
}

.section-cream {
    background-color: var(--bg-cream);
}

.section-rose {
    background-color: var(--bg-rose);
}

.section-dark {
    background-color: var(--text-dark);
    color: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}

.section-dark .section-subtitle {
    color: var(--accent);
}

.story-block {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 80px;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-cream);
    min-height: 400px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-text p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.problem-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px var(--shadow);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background-color: var(--bg-rose);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.insight-wrapper {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.insight-main {
    flex: 2;
}

.insight-sidebar {
    flex: 1;
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px var(--shadow);
}

.insight-main p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.insight-main p:first-of-type {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 500;
}

.insight-sidebar h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.insight-list li:last-child {
    border-bottom: none;
}

.insight-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px var(--shadow);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 20px;
}

.testimonial-info h5 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-muted);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow);
}

.service-image {
    height: 220px;
    background-color: var(--bg-cream);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    color: var(--white);
    margin: 48px 0;
}

.cta-banner h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background: linear-gradient(180deg, var(--bg-rose) 0%, var(--bg-light) 100%);
}

.form-wrapper {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-info p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-benefits li svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    background-color: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 8px 40px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 90, 107, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px 36px;
    font-size: 17px;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.benefit-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.benefit-text h5 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.benefit-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.disclaimer {
    background-color: var(--bg-cream);
    padding: 32px;
    border-radius: 12px;
    margin-top: 48px;
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

.references {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.references h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.references li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.references a {
    color: var(--primary);
    word-break: break-all;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 24px var(--shadow);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.cookie-text a {
    color: var(--primary);
}

.cookie-text a:hover {
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: var(--primary-dark);
}

.cookie-reject {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.cookie-reject:hover {
    background-color: var(--bg-cream);
}

.page-header {
    background-color: var(--bg-cream);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 16px;
}

.content-section ul,
.content-section ol {
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-left: 24px;
}

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

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

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

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 16px;
}

.about-intro {
    display: flex;
    gap: 64px;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-cream);
}

.about-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.team-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-cream);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.team-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 15px;
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--bg-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.citation {
    color: var(--primary);
    font-size: 12px;
    vertical-align: super;
    cursor: pointer;
}

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

.ingredients-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.ingredients-table th,
.ingredients-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.ingredients-table th {
    background-color: var(--bg-cream);
    font-weight: 600;
    color: var(--text-dark);
}

.ingredients-table td {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .story-block {
        flex-direction: column;
        gap: 32px;
    }

    .story-block:nth-child(even) {
        flex-direction: column;
    }

    .form-wrapper {
        flex-direction: column;
    }

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

    .about-intro {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: 0 8px 24px var(--shadow);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
        display: block;
    }

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

    .hero p {
        font-size: 17px;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .cta-banner h3 {
        font-size: 28px;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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