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

:root {
    --primary: #2d5016;
    --secondary: #6b8e23;
    --accent: #8fbc54;
    --dark: #1a3209;
    --light: #f4f7f1;
    --text: #2c3e20;
    --text-light: #657d52;
    --white: #ffffff;
    --gray: #e8ede3;
    --border: #d4ddc9;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--gray);
    border-radius: 4px;
    margin-left: 20px;
}

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

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

nav a:hover {
    color: var(--secondary);
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(45,80,22,0.15), transparent);
}

h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.5;
}

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

.cta-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45,80,22,0.2);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--secondary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid var(--secondary);
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

.split-content {
    flex: 1;
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    position: relative;
}

.split-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.03);
}

h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 600;
}

p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 100px 0;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: var(--gray);
    object-fit: cover;
}

.service-body {
    padding: 35px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-select {
    width: 100%;
    padding: 14px 20px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: var(--secondary);
}

.form-section {
    background: var(--light);
    padding: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

.selected-service-display {
    background: var(--gray);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 28px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 40px;
}

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

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

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--secondary);
    padding: 30px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

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

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

.cookie-accept:hover {
    background: var(--primary);
}

.cookie-reject {
    background: var(--gray);
    color: var(--text);
}

.cookie-reject:hover {
    background: var(--border);
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    flex: 1;
    padding: 80px 60px;
    background: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.contact-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.contact-value {
    font-size: 20px;
    font-weight: 500;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

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

.legal-content p {
    margin-bottom: 20px;
}

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

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

.disclaimer-box {
    background: var(--gray);
    border-left: 4px solid var(--secondary);
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

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

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

.thanks-icon {
    font-size: 80px;
    color: var(--secondary);
    margin-bottom: 30px;
}

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

    .hero-left,
    .split-content,
    .contact-info,
    .contact-details {
        padding: 60px 40px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    nav ul {
        gap: 20px;
    }

    .services-grid {
        gap: 30px;
    }
}

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

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

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

    h1 {
        font-size: 36px;
    }

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