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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    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-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f5f1ed;
}

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

.hero-left p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #4a4a4a;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: #c9b8a3;
}

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

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

.cta-primary:hover {
    background-color: #6f5c45;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

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

.intro-image {
    flex: 1;
    position: relative;
    background-color: #e8dfd6;
}

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

.intro-text {
    flex: 1;
    padding: 40px;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.problem-content {
    max-width: 1400px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.problem-left {
    flex: 1.2;
}

.problem-left p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.problem-right {
    flex: 1;
    background-color: #d4c7b8;
}

.problem-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-reveal {
    display: flex;
    min-height: 70vh;
}

.split-dark {
    background-color: #2c2c2c;
}

.insight-left {
    flex: 1;
    background-color: #4a4a4a;
}

.insight-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.insight-right h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #f5f1ed;
}

.insight-right p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #e0e0e0;
}

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

.trust-building h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.trust-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #f9f7f5;
    border-left: 4px solid #8b7355;
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.testimonials-split {
    padding: 100px 40px;
    background-color: #faf8f6;
}

.testimonial-content {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-item {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    align-items: center;
}

.testimonial-item.reverse {
    flex-direction: row-reverse;
}

.testimonial-text {
    flex: 1;
    padding: 30px;
}

.testimonial-text p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c2c2c;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #8b7355;
}

.testimonial-image {
    flex: 0.8;
    background-color: #d4c7b8;
}

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

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

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

.benefits-split {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 48px;
    font-weight: 700;
    color: #8b7355;
    min-width: 80px;
}

.benefit-text h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-text p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

.services-preview {
    padding: 100px 40px;
    background-color: #f5f1ed;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 19px;
    color: #4a4a4a;
}

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

.service-card {
    flex: 1;
    min-width: 380px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e8dfd6;
}

.service-card h3 {
    font-size: 22px;
    padding: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 25px 15px;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.5;
}

.price-reveal {
    display: block;
    padding: 15px 25px 25px;
    font-size: 24px;
    font-weight: 700;
    color: #8b7355;
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #faf8f6;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

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

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

.form-submit {
    width: 100%;
    background-color: #8b7355;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #6f5c45;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.final-trust {
    padding: 80px 40px;
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #f5f1ed;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #e0e0e0;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

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

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid #8b7355;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .insight-reveal,
    .testimonial-item,
    .form-split,
    .split-content {
        flex-direction: column;
    }

    .intro-split.reverse,
    .testimonial-item.reverse {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .service-card {
        min-width: 100%;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .intro-text h2,
    .problem-content h2,
    .testimonial-content h2,
    .benefits-reveal h2,
    .services-intro h2 {
        font-size: 32px;
    }

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

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