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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #8b7355;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 3px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

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

.mobile-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px;
}

.ad-notice-mobile {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 8px 10px;
    border-radius: 3px;
    text-align: center;
}

.hero {
    height: 600px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,44,44,0.7), rgba(139,115,85,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    background: #8b7355;
    color: white;
    padding: 16px 40px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #73603f;
    transform: translateY(-2px);
}

.story-section {
    padding: 80px 0;
    background: #fafaf8;
}

.story-intro {
    max-width: 750px;
    margin: 0 auto;
}

.story-lead {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 500;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.problem-section {
    padding: 80px 0;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.insight-section {
    padding: 90px 0;
    background: #f5f0eb;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.insight-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.insight-text {
    flex: 1;
    min-width: 300px;
}

.insight-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.insight-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
}

.trust-section {
    padding: 80px 0;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fafaf8;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #8b7355;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #2c2c2c;
    font-size: 15px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #888;
    font-size: 14px;
}

.benefits-section {
    padding: 90px 0;
    background: #2c2c2c;
    color: white;
}

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

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #ddd;
}

.collections-preview {
    padding: 90px 0;
    background: #fafaf8;
}

.collections-preview h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.collections-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.collection-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.collection-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
}

.collection-info {
    padding: 30px;
}

.collection-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.collection-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.price-tag {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.btn-collection {
    width: 100%;
    background: #2c2c2c;
    color: white;
    padding: 14px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-collection:hover {
    background: #1a1a1a;
}

.form-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #8b7355, #a68968);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #2c2c2c;
    color: white;
    padding: 16px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.disclaimer-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.disclaimer-box {
    background: white;
    padding: 30px;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #8b7355;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #8b7355;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-text p {
        font-size: 16px;
    }

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

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}