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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #4a7c59;
    --accent-color: #7ba05b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c94a4a;
    --success-color: #2c5f2d;
}

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

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

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

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.header-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-split {
    display: flex;
    gap: 35px;
}

.nav-split a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.hero-immersive {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--bg-white);
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    max-width: 700px;
}

.story-intro,
.narrow-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 80px 40px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.narrow-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 50px 0 25px 0;
    color: var(--text-dark);
}

.narrow-content p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.problem-section,
.insight-reveal,
.ingredients-section,
.science-section {
    padding: 90px 40px;
}

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

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-wrapper-reverse {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.problem-text,
.ingredients-text {
    flex: 1;
}

.problem-text h2,
.ingredients-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.problem-text p,
.ingredients-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.problem-visual,
.ingredients-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.problem-visual img,
.ingredients-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.composition-list {
    list-style: none;
    margin: 25px 0;
}

.composition-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 15px;
    padding-left: 0;
}

.composition-list strong {
    color: var(--text-dark);
}

.reference {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

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

.collection-preview {
    padding: 90px 40px;
    background-color: var(--bg-white);
}

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

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

.collection-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    width: calc(50% - 20px);
    max-width: 550px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.collection-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

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

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

.testimonials-inline {
    background-color: var(--bg-light);
    padding: 90px 40px;
}

.testimonial {
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    margin: 30px 0;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.form-section {
    padding: 90px 40px;
    background-color: var(--bg-white);
}

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

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.references-section {
    background-color: var(--bg-light);
    padding: 60px 40px;
}

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

.references-list {
    list-style-position: inside;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
}

.references-list li {
    margin-bottom: 10px;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.disclaimer {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.page-header {
    padding: 80px 40px 60px 40px;
    text-align: center;
}

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

.about-story {
    padding: 90px 40px;
}

.values-section {
    background-color: var(--bg-light);
    padding: 90px 40px;
}

.content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.values-image {
    flex: 1;
    background-color: var(--bg-white);
}

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

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.team-approach {
    background-color: var(--bg-light);
    padding: 90px 40px;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-block {
    margin-bottom: 80px;
}

.service-content-left,
.service-content-right {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 10px 0;
}

.service-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
}

.service-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.service-block.alternate {
    background-color: var(--bg-light);
    padding: 60px;
    margin-left: -40px;
    margin-right: -40px;
}

.material-info {
    background-color: var(--bg-light);
    padding: 60px 40px;
}

.contact-page {
    padding: 80px 40px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-map {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-icon svg {
    display: inline-block;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    margin: 30px 0;
    font-size: 17px;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.steps-list {
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
    color: var(--text-medium);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-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: var(--bg-white);
}

.legal-page {
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 45px 0 20px 0;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px 0;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-medium);
    margin-bottom: 18px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-medium);
}

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

@media (max-width: 968px) {
    .header-content {
        padding: 20px;
    }

    .hero-overlay h1 {
        font-size: 40px;
    }

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

    .content-wrapper,
    .content-wrapper-reverse,
    .content-asymmetric,
    .contact-layout {
        flex-direction: column;
    }

    .collection-card {
        width: 100%;
    }

    .service-content-left,
    .service-content-right {
        flex-direction: column;
    }

    .service-block.alternate {
        padding: 40px 20px;
        margin-left: 0;
        margin-right: 0;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .nav-split {
        flex-direction: column;
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .narrow-content h2 {
        font-size: 28px;
    }

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