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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

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

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

.btn-reject:hover {
    background: #fff;
    color: #2c3e50;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

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

.main-nav a:hover {
    color: #2c5f2d;
}

.ad-label {
    font-size: 11px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background: #f9f9f9;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #2c5f2d;
    margin-bottom: 20px;
}

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

.cta-primary {
    display: inline-block;
    background: #2c5f2d;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c5f2d;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.split-image-text {
    background: #f5f5f5;
}

.split-content {
    display: flex;
    min-height: 500px;
}

.split-text,
.split-image {
    flex: 1;
}

.split-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c5f2d;
}

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

.split-image {
    background-size: cover;
    background-position: center;
    background-color: #d4e8d5;
}

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

.problem-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.problem-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background: #f9f9f9;
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

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

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

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c5f2d;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

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

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f2d;
}

.testimonial-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background: #f9f9f9;
    border-top: 3px solid #2c5f2d;
}

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

.author {
    font-size: 14px;
    color: #888;
}

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

.benefits-reveal h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f2d;
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #333;
}

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.service-card .price {
    display: block;
    padding: 0 20px;
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #234d24;
}

.service-card.selected {
    border: 3px solid #2c5f2d;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
    text-align: center;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

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

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

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

.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;
}

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

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

.btn-submit:hover {
    background: #234d24;
}

.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

.disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    font-size: 13px;
    color: #bdc3c7;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.thanks-content .service-info {
    font-weight: 600;
    color: #2c5f2d;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #2c5f2d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.thanks-content a:hover {
    background: #234d24;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 20px;
    }

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

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

    .split-text {
        padding: 40px 20px;
    }

    .split-image {
        min-height: 300px;
    }
}

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

    .cookie-buttons {
        justify-content: center;
    }
}