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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
}

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

.cookie-banner.active {
    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-actions {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background: #8b7355;
    color: #fff;
}

.btn-accept:hover {
    background: #6d5942;
}

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

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

.header-asymmetric {
    position: relative;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #8b7355;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-offset {
    display: flex;
    min-height: 600px;
    position: relative;
    margin: 40px 0 80px;
}

.hero-content-left {
    flex: 0 0 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    z-index: 2;
    margin-left: 50px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #8b7355;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.hero-image-right {
    flex: 1;
    position: absolute;
    right: 0;
    top: 60px;
    width: 60%;
    height: calc(100% - 60px);
    background: #e8e8e8;
}

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

.story-hook {
    padding: 100px 50px;
    background: #f9f7f4;
}

.hook-container {
    max-width: 700px;
    margin: 0 auto;
}

.hook-text {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.hook-continuation {
    font-size: 26px;
    font-weight: bold;
    color: #8b7355;
    font-style: italic;
}

.problem-amplification {
    display: flex;
    padding: 80px 0;
    gap: 60px;
    align-items: center;
}

.problem-block-offset {
    flex: 1;
    padding-left: 80px;
}

.problem-block-offset h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.problem-card {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #8b7355;
}

.problem-card-elevated {
    margin-left: 60px;
    background: #f4f1ed;
}

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

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

.problem-visual {
    flex: 0 0 400px;
    background: #e0e0e0;
    margin-right: 60px;
}

.problem-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-reveal {
    padding: 100px 50px;
    background: #2c2c2c;
    color: #fff;
}

.insight-content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.insight-content-narrow h2 {
    font-size: 42px;
    margin-bottom: 35px;
}

.insight-content-narrow p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 25px;
    opacity: 0.95;
}

.trust-builder {
    padding: 100px 50px;
}

.trust-elements-stacked {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-stat {
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.trust-stat-offset {
    margin-left: 150px;
    background: #f9f7f4;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: bold;
    color: #8b7355;
    margin-bottom: 15px;
}

.trust-stat p {
    font-size: 18px;
    color: #555;
}

.testimonials-asymmetric {
    padding: 80px 50px;
    background: #f4f1ed;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-left,
.testimonial-right-elevated,
.testimonial-center {
    background: #fff;
    padding: 40px;
    max-width: 650px;
}

.testimonial-left {
    align-self: flex-start;
    margin-left: 100px;
}

.testimonial-right-elevated {
    align-self: flex-end;
    margin-right: 100px;
    background: #8b7355;
    color: #fff;
}

.testimonial-center {
    align-self: center;
}

blockquote {
    border: none;
}

blockquote p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-right-elevated blockquote p {
    color: #fff;
}

cite {
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.testimonial-right-elevated cite {
    color: #f4f1ed;
}

.benefits-reveal {
    padding: 100px 50px;
}

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

.benefits-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.benefit-card-1 {
    flex: 0 0 calc(40% - 20px);
}

.benefit-card-2 {
    flex: 0 0 calc(60% - 20px);
    margin-top: 60px;
}

.benefit-card-3 {
    flex: 0 0 calc(50% - 20px);
}

.benefit-card-4 {
    flex: 0 0 calc(50% - 20px);
    margin-top: -40px;
}

.benefit-card-5 {
    flex: 0 0 calc(55% - 20px);
    margin-top: 40px;
}

.benefit-card-6 {
    flex: 0 0 calc(45% - 20px);
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #e8e8e8;
}

.benefit-card h3 {
    font-size: 24px;
    padding: 25px 30px 15px;
    color: #2c2c2c;
}

.benefit-card p {
    padding: 0 30px 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.price-tag {
    display: block;
    padding: 20px 30px;
    background: #f4f1ed;
    font-size: 28px;
    font-weight: bold;
    color: #8b7355;
    border-top: 2px solid #8b7355;
}

.cta-section-offset {
    padding: 120px 50px;
    background: linear-gradient(135deg, #8b7355 0%, #6d5942 100%);
    position: relative;
}

.cta-content-block {
    max-width: 700px;
    margin-left: 120px;
    color: #fff;
}

.cta-content-block h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.cta-content-block p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-button {
    padding: 18px 50px;
    background: #fff;
    color: #8b7355;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f4f1ed;
    transform: translateX(10px);
}

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

.form-container-asymmetric {
    max-width: 600px;
    margin-left: auto;
    margin-right: 100px;
}

.form-container-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 40px;
    background: #8b7355;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 50px 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-column {
    flex: 1;
}

.footer-col-1 {
    flex: 1.5;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: #8b7355;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

    .hero-content-left {
        flex: 1;
        margin-left: 0;
    }

    .hero-image-right {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

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

    .problem-visual {
        order: -1;
        margin: 0;
        width: 100%;
        height: 300px;
    }

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

    .benefit-card-1,
    .benefit-card-2,
    .benefit-card-3,
    .benefit-card-4,
    .benefit-card-5,
    .benefit-card-6 {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .footer-main {
        flex-wrap: wrap;
    }
}