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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #7ba8c7;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.main-nav {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.editorial-container {
    max-width: 100%;
}

.editorial-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: var(--background-light);
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 90%;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.25rem;
    font-weight: 300;
}

.narrow-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-intro,
.about-intro,
.ingredient-reveal,
.trust-building,
.benefits-section,
.product-reveal,
.form-section,
.disclaimer-section,
.references-section,
.services-content,
.contact-content,
.thanks-section,
.legal-content {
    padding: 3rem 0;
}

.intro-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.narrow-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.narrow-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.narrow-content ul,
.narrow-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.narrow-content li {
    margin-bottom: 0.75rem;
}

.narrow-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.narrow-content a:hover {
    border-bottom-color: var(--primary-color);
}

.inline-image-text {
    margin: 3rem 0;
    background-color: var(--background-light);
}

.inline-image-text img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.testimonial-inline cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.ingredient-card {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.ingredient-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.benefit-list {
    margin: 2rem 0;
}

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

.benefit-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.product-card {
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: var(--border-color);
}

.product-card h3 {
    margin: 1.5rem 1.5rem 0.75rem;
}

.product-card p {
    margin: 0 1.5rem 1rem;
    color: var(--text-light);
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem;
}

.select-btn,
.service-select-btn,
.submit-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    margin: 1.5rem;
}

.select-btn:hover,
.service-select-btn:hover,
.submit-btn:hover {
    background-color: var(--secondary-color);
}

.order-form {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.selected-service-display {
    padding: 1.5rem;
    background-color: var(--background-white);
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    margin: 1rem 0 0 0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.references-list {
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 2rem;
}

.references-list li {
    margin-bottom: 1rem;
}

.page-header {
    background-color: var(--background-light);
    padding: 4rem 0 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-subtext {
    font-size: 1.15rem;
    color: var(--text-light);
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.single-product {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.single-product h3 {
    margin-top: 0;
}

.service-note {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 4px;
    margin-top: 3rem;
}

.contact-info {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.contact-note {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 4px;
    margin-top: 2rem;
}

.thanks-content {
    text-align: center;
    padding: 4rem 0;
}

.thanks-content h1 {
    color: var(--success-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.order-info {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps {
    text-align: left;
    margin: 3rem auto;
    max-width: 600px;
}

.next-steps h2 {
    text-align: center;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.support-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 3rem;
}

.about-quote {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

.about-quote p {
    font-size: 1.25rem;
    margin: 0;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-content th,
.legal-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.legal-content th {
    background-color: var(--background-light);
    font-weight: 600;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

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

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

.footer-column a {
    color: var(--background-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 0.5rem;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hero-subtext {
        font-size: 1rem;
    }

    .narrow-content {
        padding: 2rem 1.5rem;
    }

    .narrow-content h2 {
        font-size: 1.5rem;
    }

    .product-showcase {
        gap: 2rem;
    }

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

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

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