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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.ad-disclosure {
    background: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.cookie-actions button {
    padding: 10px 20px;
    border: none;
    background: #8b7355;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.cookie-actions button:hover {
    background: #6b5642;
}

.cookie-actions .btn-secondary {
    background: transparent;
    border: 1px solid #fff;
}

.cookie-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-full {
    width: 100%;
    height: 85vh;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

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

.hero-overlay p {
    font-size: 22px;
    max-width: 600px;
}

.content-narrow {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.content-narrow h2 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #2c2c2c;
}

.content-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.story-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
    gap: 60px;
    padding: 0 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.problem-amplification {
    background: #f5f5f5;
    padding: 80px 20px;
    margin: 80px 0;
}

.problem-amplification h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #8b7355;
}

.problem-card p {
    font-size: 16px;
    color: #666;
}

.insight-reveal {
    max-width: 900px;
    margin: 100px auto;
    padding: 60px;
    background: linear-gradient(135deg, #8b7355 0%, #6b5642 100%);
    color: #fff;
    border-radius: 12px;
}

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.insight-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-section {
    padding: 80px 20px;
    background: #fff;
}

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

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

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

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 15px;
    color: #444;
}

.testimonial-card span {
    font-size: 14px;
    color: #777;
    font-weight: 600;
}

.collection-preview {
    padding: 80px 20px;
    background: #fafafa;
}

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

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

.collection-item {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.collection-item img {
    width: 100%;
    display: block;
}

.collection-item h3 {
    font-size: 24px;
    margin: 25px 20px 10px;
    color: #2c2c2c;
}

.collection-item p {
    margin: 0 20px 25px;
    color: #666;
    font-size: 16px;
}

.benefits-reveal {
    padding: 100px 20px;
    background: #fff;
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.benefits-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-large {
    background: #f5f5f5;
    padding: 50px;
    border-radius: 8px;
}

.benefit-large h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #8b7355;
}

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

.benefit-small {
    background: #fff;
    padding: 35px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-left: 80px;
}

.benefit-small h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.benefit-small p {
    font-size: 16px;
    color: #666;
}

.services-pricing {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #fafafa 0%, #f0f0f0 100%);
}

.services-pricing h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.price-card.featured {
    border: 3px solid #8b7355;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b7355;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.price-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    min-height: 60px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 25px;
}

.price-card button {
    width: 100%;
    padding: 15px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.price-card button:hover {
    background: #6b5642;
}

.order-form-section {
    padding: 80px 20px;
    background: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.selected-price {
    font-size: 20px;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 30px;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #8b7355;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #6b5642;
}

.final-cta {
    padding: 100px 20px;
    text-align: center;
    background: #2c2c2c;
    color: #fff;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: #8b7355;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #6b5642;
}

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #8b7355;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.contact-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #8b7355;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #555;
}

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

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

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

.services-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.services-page h1 {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-content {
    flex: 1;
}

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

.service-content .service-price {
    font-size: 28px;
    color: #8b7355;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-features {
    margin-top: 25px;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
}

.about-hero {
    background: linear-gradient(135deg, #8b7355 0%, #6b5642 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

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

.about-hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-values {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b7355;
}

.value-card p {
    font-size: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

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

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

    .story-section {
        flex-direction: column;
    }

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

    .testimonials {
        flex-direction: column;
    }

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

    .service-detail {
        flex-direction: column !important;
    }

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

    .benefit-small {
        margin-left: 0;
    }
}