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

:root {
    --primary-color: #0a4d3c;
    --secondary-color: #2d7a5f;
    --accent-color: #4fb389;
    --light-bg: #f8faf9;
    --dark-text: #1a1a1a;
    --gray-text: #5a5a5a;
    --border-color: #e0e6e3;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
}

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

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

.container-wide {
    max-width: 100%;
    padding: 0 40px;
}

header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--white);
    margin-left: auto;
    margin-right: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    font-size: 15px;
}

nav a:hover {
    opacity: 0.8;
}

.hero-section {
    background: linear-gradient(rgba(10, 77, 60, 0.75), rgba(45, 122, 95, 0.75)), url('hero-bg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 140px 20px 160px;
    text-align: center;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 22px;
    max-width: 780px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #3d9e73;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 179, 137, 0.3);
}

.section-light {
    background: var(--light-bg);
    padding: 100px 20px;
}

.section-white {
    background: var(--white);
    padding: 100px 20px;
}

.section-dark {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 20px;
}

.section-accent {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 19px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    color: var(--gray-text);
    line-height: 1.7;
}

.section-dark .section-subtitle,
.section-accent .section-subtitle {
    color: rgba(255,255,255,0.9);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    min-width: 280px;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 20px;
}

.service-price-label {
    font-size: 14px;
    color: var(--gray-text);
    margin-top: 5px;
}

.image-section {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay {
    background: rgba(10, 77, 60, 0.8);
    padding: 50px;
    max-width: 650px;
    text-align: center;
    border-radius: 8px;
}

.image-overlay h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--white);
}

.image-overlay p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.split-content {
    flex: 1 1 450px;
}

.split-image {
    flex: 1 1 450px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--border-color);
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.form-section {
    background: linear-gradient(135deg, #f8faf9 0%, #e8f2ed 100%);
    padding: 80px 20px;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

.form-container p {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 35px;
    font-size: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

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

.feature-item {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    gap: 20px;
    min-width: 280px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    color: var(--white);
}

.feature-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-content p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
}

.stats-section {
    background: var(--primary-color);
    padding: 70px 20px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 17px;
    opacity: 0.9;
}

footer {
    background: #0d1f1a;
    color: var(--white);
    padding: 60px 20px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

.disclaimer {
    background: #fff8e6;
    border-left: 4px solid #ffb800;
    padding: 20px 25px;
    margin: 40px 0;
    font-size: 14px;
    color: #665400;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 31, 26, 0.98);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1 1 500px;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.cookie-accept {
    background: var(--accent-color);
    color: var(--white);
}

.cookie-accept:hover {
    background: #3d9e73;
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.contact-info {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 16px;
}

.contact-item span {
    color: var(--dark-text);
    font-size: 15px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 16px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 19px;
    margin-bottom: 20px;
    color: var(--gray-text);
    line-height: 1.7;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .ad-disclosure {
        margin: 0;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .split-image {
        width: 100%;
        height: 300px;
    }

    .feature-item {
        flex: 1 1 100%;
    }

    .form-container {
        padding: 30px 20px;
    }

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

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