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

:root {
    --primary-color: #2c5f7f;
    --secondary-color: #d4a574;
    --accent-color: #8b4513;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f6f3;
    --bg-dark: #2a2a2a;
    --border-color: #ddd;
}

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

.ad-disclosure {
    background: #fff3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4560 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 60px 20px;
}

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

.hero-section h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #c89861;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.story-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 30px;
    line-height: 1.9;
}

.story-section h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}

.story-section strong {
    color: var(--accent-color);
}

.inline-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin: 45px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.problem-section {
    background: var(--bg-light);
    padding: 90px 30px;
}

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

.problem-section h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.problem-item {
    background: white;
    padding: 35px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.solution-intro {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
}

.solution-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.benefits-section {
    padding: 90px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.testimonials-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 90px 30px;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.services-reveal {
    padding: 100px 30px;
    background: linear-gradient(to bottom, white 0%, var(--bg-light) 100%);
}

.services-reveal h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
    font-size: 19px;
    color: #555;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    transform: translateY(-3px);
}

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--bg-light);
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
    display: block;
}

.select-service-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #1a4560;
}

.select-service-btn.selected {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.form-section {
    padding: 90px 30px;
    background: var(--primary-color);
    color: var(--text-light);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
}

.form-section p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 45px;
    opacity: 0.9;
}

form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-weight: 600;
    font-size: 15px;
}

input, select, textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: 3px solid var(--secondary-color);
}

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

.submit-btn {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 18px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.submit-btn:hover {
    background: #c89861;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.selected-service-display {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
    display: none;
}

.selected-service-display.visible {
    display: block;
}

.ingredients-section {
    padding: 90px 30px;
    background: white;
    max-width: 1000px;
    margin: 0 auto;
}

.ingredients-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.ingredient-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.ingredient-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.ingredient-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    vertical-align: super;
}

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

.references-section {
    background: var(--bg-light);
    padding: 70px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.references-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.reference-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.reference-list li:before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--primary-color);
}

.reference-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    background: #fff3cd;
    padding: 50px 30px;
    max-width: 1000px;
    margin: 0 auto;
    border-left: 5px solid #ffc107;
}

.disclaimer-section h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #856404;
}

.disclaimer-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #856404;
    margin-bottom: 15px;
}

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

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

.footer-contact p {
    margin-bottom: 10px;
    font-size: 15px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: var(--text-light);
    padding: 25px 30px;
    z-index: 10000;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
    display: none;
}

.cookie-banner.visible {
    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;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.cookie-accept:hover {
    background: #c89861;
}

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

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

.about-hero {
    background: linear-gradient(rgba(44, 95, 127, 0.9), rgba(44, 95, 127, 0.9)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 30px 80px;
    color: var(--text-light);
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.contact-hero {
    background: var(--primary-color);
    padding: 100px 30px 60px;
    color: var(--text-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-grid {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.info-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #444;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.thanks-service {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 35px 0;
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
}

.back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-home:hover {
    background: #1a4560;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 20px;
        gap: 20px;
    }

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-section h1 {
        font-size: 38px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .story-section h2 {
        font-size: 32px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: center;
    }
}
