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

:root {
    --primary: #1a4d2e;
    --secondary: #2d6a4f;
    --accent: #52b788;
    --dark: #081c15;
    --light: #d8f3dc;
    --white: #ffffff;
    --text: #1b1b1b;
    --gray: #6c757d;
    --border: #e0e0e0;
}

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

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

.narrow {
    max-width: 900px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

.hero-split {
    margin-top: 80px;
    display: flex;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.hero-left {
    background: var(--light);
}

.hero-right {
    background: var(--primary);
    color: var(--white);
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.cta-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.cta-btn-white {
    background: var(--white);
    color: var(--primary);
}

.cta-btn-white:hover {
    background: var(--light);
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.split-left {
    background: var(--white);
}

.split-right {
    background: var(--dark);
    color: var(--white);
}

.split-reverse .split-left {
    order: 2;
    background: var(--secondary);
    color: var(--white);
}

.split-reverse .split-right {
    order: 1;
    background: var(--white);
    color: var(--text);
}

.split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.split-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-content ul {
    list-style: none;
    margin: 30px 0;
}

.split-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.split-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 20px;
    background: var(--light);
}

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

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
}

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

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.price-note {
    font-size: 0.9rem;
    color: var(--gray);
}

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

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.form-container p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

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

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px 20px;
    display: none;
    z-index: 10000;
}

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

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

.cookie-text {
    flex: 1;
}

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

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

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

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

.accept-btn:hover {
    background: var(--secondary);
}

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

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-section a {
    color: var(--light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

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

.about-header {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-align: center;
}

.about-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.content-section {
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.content-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray);
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background: var(--light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

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

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

.info-item {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

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

.thanks-box {
    background: var(--light);
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

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

.legal-page {
    padding: 120px 20px 60px;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-page h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--secondary);
}

.legal-page h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.legal-page p,
.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

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

@media (max-width: 968px) {
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px;
        border-top: 1px solid var(--border);
        transition: left 0.3s;
    }

    nav ul.active {
        left: 0;
    }

    .mobile-menu {
        display: flex;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-content h2 {
        font-size: 2rem;
    }

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

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

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

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

    .split-content h2 {
        font-size: 1.7rem;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .thanks-box h1 {
        font-size: 2.2rem;
    }
}
