* {
    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-color: #fafafa;
}

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.hero-funnel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #3d3d3d;
}

.hero-funnel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-content-overlay h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.3rem;
    font-weight: 300;
}

.story-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #444;
}

.inline-img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    object-fit: cover;
}

.problem-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.problem-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #555;
}

.problem-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.insight-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #8b6f47;
    border-left: 4px solid #8b6f47;
    padding-left: 25px;
    margin: 35px 0;
}

.trust-section {
    padding: 80px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.trust-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.trust-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 70px 20px;
    background-color: #8b6f47;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1rem;
    color: #f0e5d8;
}

.benefits-reveal {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

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

.benefit-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 300px;
    background-color: #f9f9f9;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
}

.benefit-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin: 25px 20px 15px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 1rem;
    color: #555;
    margin: 0 20px 25px;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

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

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

.services-intro p {
    font-size: 1.1rem;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 25px 15px;
    line-height: 1.5;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b6f47;
    margin: 20px 25px 15px;
}

.select-service-btn {
    display: block;
    width: calc(100% - 50px);
    margin: 20px 25px 25px;
    padding: 14px 0;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #6f5838;
}

.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

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

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

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

.submit-btn {
    padding: 16px 0;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 50px 20px;
    background-color: #f0f0f0;
}

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

.disclaimer-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-col p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 60%;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #555;
    color: #ffffff;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-container .selected-service-display {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.2rem;
    margin: 30px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #6f5838;
}

.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.page-container h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.page-container h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-container h3 {
    font-size: 1.3rem;
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.page-container ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-content-overlay h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}