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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fdfbf9;
}

.nav-main {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b6f47;
    letter-spacing: 0.5px;
}

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

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

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

.ad-label {
    font-size: 0.85rem;
    color: #999;
    border: 1px solid #ddd;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f9f4ef 0%, #ede3d8 100%);
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #5a5a5a;
}

.cta-primary {
    display: inline-block;
    background: #8b6f47;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #6f5838;
}

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

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

.split-half {
    flex: 1;
}

.content-pad {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-pad h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 400;
}

.content-pad p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #5a5a5a;
}

.ref-link {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
}

.ref-link:hover {
    text-decoration: underline;
}

.section-header-center {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
    font-weight: 400;
}

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

.ingredients-section {
    background: #fff;
    padding: 3rem 2rem 5rem;
}

.ingredients-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.ingredient-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    max-width: 500px;
    background: #faf7f4;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #8b6f47;
}

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

.ingredient-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.trust-section {
    background: linear-gradient(135deg, #8b6f47 0%, #6f5838 100%);
    padding: 4rem 2rem;
}

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

.trust-badges {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.badge-item {
    text-align: center;
    color: #fff;
    flex: 1 1 200px;
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.badge-item p {
    font-size: 1.1rem;
}

.testimonials-section {
    padding: 5rem 2rem;
    background: #f9f4ef;
}

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

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
}

.testimonial-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.testimonial-content p {
    font-size: 1.05rem;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #8b6f47;
    font-weight: 600;
}

.services-reveal {
    padding: 5rem 2rem;
    background: #fff;
}

.services-cards {
    max-width: 1300px;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 320px;
    max-width: 600px;
    background: #faf7f4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 280px;
}

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

.service-info {
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

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

.service-price {
    font-size: 2rem;
    color: #8b6f47;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    background: #8b6f47;
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1.05rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #6f5838;
}

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ede3d8 0%, #dfd3c4 100%);
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 400;
}

.form-left p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    font-size: 1.05rem;
    color: #4a4a4a;
    padding-left: 0.5rem;
}

.form-right {
    flex: 1;
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

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

.btn-submit {
    width: 100%;
    background: #8b6f47;
    color: #fff;
    border: none;
    padding: 1.1rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

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

.disclaimer-section {
    background: #f5f0eb;
    padding: 3rem 2rem;
    border-top: 3px solid #8b6f47;
}

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

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.8;
}

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

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

.footer-column {
    flex: 1 1 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #8b6f47;
}

.references-list {
    font-size: 0.85rem;
}

.references-list li {
    margin-bottom: 0.7rem;
    line-height: 1.5;
}

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-accept {
    background: #8b6f47;
    color: #fff;
}

.btn-accept:hover {
    background: #6f5838;
}

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

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

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 4rem 3rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.thanks-container p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.selected-service {
    background: #f9f4ef;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service strong {
    color: #8b6f47;
    font-size: 1.2rem;
}

.btn-home {
    display: inline-block;
    background: #8b6f47;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 2rem;
    font-size: 1.05rem;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #6f5838;
}

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

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

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

    .content-pad {
        padding: 3rem 2rem;
    }
}