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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c2416;
    background: #fdfcfa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2416;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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: #d4a574;
    text-decoration: underline;
}

.cookie-actions {
    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: #d4a574;
    color: #2c2416;
}

.btn-accept:hover {
    background: #c49563;
}

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

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e8e3dc;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #584635;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #8b6f47;
    border: 1px solid #d4a574;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-left, .hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-left {
    background: #f5f1eb;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #2c2416;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #5a4a38;
}

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

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

.hero-right {
    background-size: cover;
    background-position: center;
}

.insight-split {
    display: flex;
    min-height: 80vh;
}

.insight-left, .insight-right {
    flex: 1;
}

.insight-left {
    background-size: cover;
    background-position: center;
}

.insight-right {
    display: flex;
    align-items: center;
    padding: 80px;
    background: #fff;
}

.insight-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #2c2416;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a4a38;
}

.problem-amplification {
    padding: 100px 40px;
    background: #f9f7f4;
}

.problem-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #2c2416;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a4a38;
}

.problem-visual {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.story-section {
    display: flex;
    min-height: 85vh;
}

.story-left, .story-right {
    flex: 1;
}

.story-left {
    display: flex;
    align-items: center;
    padding: 80px;
    background: #fff;
}

.story-content h2 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #2c2416;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #5a4a38;
}

.story-right {
    background-size: cover;
    background-position: center;
}

.trust-building {
    padding: 100px 40px;
    background: #2c2416;
    color: #fff;
}

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

.trust-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #d4a574;
}

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

.testimonials-split {
    display: flex;
    min-height: 70vh;
}

.testimonial-left, .testimonial-right {
    flex: 1;
}

.testimonial-left {
    display: flex;
    align-items: center;
    padding: 80px;
    background: #f5f1eb;
}

.testimonial-content blockquote {
    margin-bottom: 40px;
    border-left: 4px solid #8b6f47;
    padding-left: 28px;
}

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

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    color: #8b6f47;
    font-weight: 600;
}

.testimonial-right {
    background-size: cover;
    background-position: center;
}

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

.benefits-reveal h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c2416;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    margin-bottom: 60px;
    min-height: 450px;
}

.benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-left, .benefit-right {
    flex: 1;
}

.benefit-left {
    background-size: cover;
    background-position: center;
    background-color: #e8e3dc;
}

.benefit-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #f9f7f4;
}

.benefit-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2416;
}

.benefit-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a4a38;
}

.services-overview {
    padding: 100px 40px;
    background: #f5f1eb;
}

.services-overview h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2416;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e8e3dc;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #8b6f47;
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2416;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #5a4a38;
}

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

.select-service {
    width: 100%;
    padding: 14px;
    background: #2c2416;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #8b6f47;
}

.select-service.selected {
    background: #d4a574;
    color: #2c2416;
}

.form-section {
    padding: 100px 40px;
    background: #fff;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-left, .form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c2416;
}

.form-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a4a38;
}

.form-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-right input,
.form-right select,
.form-right textarea {
    padding: 16px;
    border: 2px solid #e8e3dc;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.disclaimer-section {
    padding: 60px 40px;
    background: #f9f7f4;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #8b6f47;
    border-radius: 6px;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a4a38;
}

.main-footer {
    background: #2c2416;
    color: #e8e3dc;
    padding: 60px 40px 30px;
}

.footer-container {
    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 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4a574;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #b8b0a3;
}

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

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

.footer-section ul li a {
    color: #b8b0a3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d4a574;
}

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

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

@media (max-width: 1024px) {
    .hero-split, .insight-split, .story-section, .testimonials-split {
        flex-direction: column;
    }

    .hero-right, .insight-left, .story-right, .testimonial-right {
        min-height: 400px;
    }

    .problem-container, .form-split {
        flex-direction: column;
    }

    .benefit-item:nth-child(even) {
        flex-direction: column;
    }
}

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

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

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