:root {
    --color-primary: #8B5A7B;
    --color-secondary: #D4A5A5;
    --color-accent: #F5E6E8;
    --color-dark: #2D2D2D;
    --color-light: #FDFBFB;
    --color-text: #4A4A4A;
    --color-muted: #7D7D7D;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-light);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-dark);
}

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

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

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

.header {
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-accent);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.ad-disclosure {
    background-color: var(--color-accent);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: var(--color-muted);
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-primary);
    font-weight: normal;
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-dark);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--color-text);
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 40px;
    margin-left: 5%;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    color: var(--color-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 35px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--color-dark);
    color: white;
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--color-accent);
}

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

.section-dark h2,
.section-dark h3 {
    color: var(--color-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: normal;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-muted);
    margin-bottom: 50px;
}

.story-block {
    padding: 100px 0;
}

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

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.story-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.split-section {
    display: flex;
    min-height: 600px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-color: var(--color-secondary);
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.split-content h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 25px;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: white;
    flex: 1 1 320px;
    max-width: 380px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    height: 200px;
    background-color: var(--color-secondary);
    position: relative;
}

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

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 20px;
}

.testimonial-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-light) 100%);
    padding: 100px 0;
}

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

.testimonial-item {
    background-color: white;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--color-accent);
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 15px;
    color: var(--color-muted);
}

.testimonial-author strong {
    color: var(--color-dark);
}

.benefits-section {
    padding: 100px 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

.benefit-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 15px;
}

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

.cta-section {
    background-color: var(--color-primary);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: normal;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

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

.cta-section .btn:hover {
    background-color: var(--color-dark);
    color: white;
}

.form-section {
    padding: 100px 0;
    background-color: var(--color-accent);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    width: 100%;
}

.references-section {
    padding: 60px 0;
    background-color: var(--color-light);
    border-top: 1px solid var(--color-accent);
}

.references-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
}

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

.references-list li {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.references-list li::before {
    content: attr(data-ref);
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.references-list a {
    color: var(--color-muted);
    text-decoration: underline;
}

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

.disclaimer-section {
    padding: 40px 0;
    background-color: #f5f5f5;
    border-top: 1px solid #eee;
}

.disclaimer-text {
    font-size: 12px;
    color: var(--color-muted);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

.cookie-btn-accept:hover {
    background-color: var(--color-secondary);
}

.cookie-btn-reject {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.cookie-btn-reject:hover {
    border-color: white;
}

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

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: normal;
    color: var(--color-dark);
}

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

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: normal;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.page-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.page-content p {
    margin-bottom: 20px;
}

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

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    background-color: white;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 5px;
    font-weight: normal;
}

.contact-item-content p {
    font-size: 16px;
    color: var(--color-dark);
    margin: 0;
}

.thanks-container {
    text-align: center;
    padding: 120px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-accent);
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--color-primary);
}

.thanks-container h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: var(--color-muted);
    margin-bottom: 30px;
}

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

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

.ingredients-section {
    padding: 80px 0;
    background-color: white;
}

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

.ingredient-item {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
    background-color: var(--color-accent);
}

.ingredient-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 15px;
}

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

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

    .split-section.reverse {
        flex-direction: column;
    }

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

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

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

    .benefit-item,
    .benefit-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-accent);
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        margin-left: 0;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .section {
        padding: 60px 0;
    }

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

    .form-container {
        padding: 30px 20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
