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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-color: #333;
    --light-bg: #f8f6f4;
    --white: #ffffff;
    --border-color: #e0d5c7;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #e0b885;
}

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

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

.navbar {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.ad-label {
    font-size: 11px;
    color: #666;
    border: 1px solid #999;
    padding: 4px 8px;
    border-radius: 3px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: var(--light-bg);
}

.hero-right {
    flex: 1;
    background-color: #f0ebe6;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #765f48;
    transform: translateY(-2px);
}

.story-section {
    padding: 100px 20px;
    background-color: var(--white);
}

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

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

.insight-split {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.split-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

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

.split-image {
    flex: 1;
    background-color: #e8e3dc;
}

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

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

.split-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.problem-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    flex: 1;
    padding: 40px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.testimonial-split {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonial {
    margin-bottom: 40px;
}

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

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

.benefits-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

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

.benefits-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-large {
    flex: 1;
    min-width: 320px;
    background-color: var(--white);
    overflow: hidden;
}

.benefit-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.benefit-large h3 {
    font-size: 24px;
    padding: 25px 25px 15px;
    color: var(--primary-color);
}

.benefit-large p {
    padding: 0 25px 25px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.approach-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.trust-section {
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    flex: 1;
}

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

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
}

.reveal-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

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

.reveal-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.collection-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.collection-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.collection-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.collection-card h3 {
    font-size: 24px;
    padding: 25px 25px 15px;
    color: var(--primary-color);
}

.collection-card p {
    padding: 0 25px 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.collection-includes {
    font-size: 14px !important;
    color: #777 !important;
    font-style: italic;
}

.price {
    font-size: 28px !important;
    font-weight: bold;
    color: var(--secondary-color) !important;
    padding: 15px 25px !important;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-select:hover {
    background-color: #e0b885;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 20px;
    background-color: var(--white);
    display: none;
}

.form-section.show {
    display: block;
}

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

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: #555;
}

.order-form {
    background-color: var(--light-bg);
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--primary-color);
    font-weight: bold;
}

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

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 100px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;
}

.cta-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f0f0f0;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

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

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

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

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

    .split-text {
        padding: 40px 20px;
    }

    .problem-grid,
    .trust-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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