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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4f;
    text-decoration: none;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

nav a:hover {
    color: #2c5f4f;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.split-left {
    background: linear-gradient(135deg, #2c5f4f 0%, #3a7a64 100%);
    color: white;
}

.split-right {
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.15);
}

h1 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f4f;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f4f;
}

.lead {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2c5f4f;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c5f4f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-secondary:hover {
    background: #234a3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.section-alt {
    display: flex;
    min-height: 70vh;
}

.section-content,
.section-visual {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-visual {
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 95, 79, 0.1);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #e8f0ed;
}

.service-price {
    font-size: 28px;
    color: #2c5f4f;
    font-weight: 700;
    margin: 15px 0;
}

.service-description {
    color: #555;
    margin-bottom: 20px;
}

.testimonial-section {
    background: #f8f9fa;
    padding: 80px 50px;
}

.testimonials {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c5f4f;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f4f;
}

.form-section {
    background: linear-gradient(135deg, #2c5f4f 0%, #3a7a64 100%);
    padding: 80px 50px;
    color: white;
}

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

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: white;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.25);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

select option {
    background: #2c5f4f;
    color: white;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

.footer-column a:hover {
    color: white;
}

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

.disclaimer {
    background: #f0f0f0;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #2c5f4f;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background: #2c5f4f;
    color: white;
}

.cookie-accept:hover {
    background: #234a3d;
}

.cookie-reject {
    background: #666;
    color: white;
}

.cookie-reject:hover {
    background: #555;
}

.content-page {
    padding: 60px 0;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c5f4f;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.content-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info p {
    margin: 15px 0;
    font-size: 16px;
}

.contact-info strong {
    color: #2c5f4f;
}

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

.thanks-box {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    max-width: 600px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2c5f4f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: white;
}

.image-section {
    padding: 0;
    margin: 0;
}

.full-width-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.benefit-block {
    padding: 80px 50px;
    background: white;
}

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

.benefit-item {
    flex: 1;
    min-width: 280px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #2c5f4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.pricing-reveal {
    background: linear-gradient(135deg, #1a4034 0%, #2c5f4f 100%);
    color: white;
    padding: 80px 50px;
    text-align: center;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.pricing-card {
    background: white;
    color: #2c3e50;
    padding: 40px;
    border-radius: 10px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.price-tag {
    font-size: 48px;
    color: #2c5f4f;
    font-weight: 700;
    margin: 20px 0;
}

.price-features {
    text-align: left;
    margin: 25px 0;
}

.price-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-weight: bold;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.references {
    background: #f8f9fa;
    padding: 40px;
    margin-top: 60px;
}

.references h3 {
    margin-bottom: 20px;
}

.references ol {
    margin-left: 20px;
}

.references li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references a {
    color: #2c5f4f;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .split-hero,
    .section-alt {
        flex-direction: column;
    }

    .split-left,
    .split-right,
    .section-content,
    .section-visual {
        min-height: 50vh;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

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

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

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

    .pricing-cards {
        flex-direction: column;
    }
}