* {
    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;
}

header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a472a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.nav-links a:hover {
    color: #27ae60;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 5rem;
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
    color: white;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1583422409516-2895a77efded?w=1200') center/cover;
    position: relative;
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(26, 71, 42, 0.3), transparent);
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: white;
    color: #1a472a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-secondary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

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

.split-left, .split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.split-left {
    background: #f8f9fa;
}

.split-right {
    background: white;
}

.reverse .split-left {
    background: white;
}

.reverse .split-right {
    background: #f0f4f3;
}

.split-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
    font-weight: 700;
}

.split-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.split-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1));
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.price-note {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background: #1a472a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #27ae60;
}

.select-service-btn.selected {
    background: #27ae60;
}

.form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

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

.form-container h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1a472a;
    text-align: center;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1.2rem 2.5rem;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 25px rgba(39, 174, 96, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

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

.about-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 0;
}

.about-content {
    flex: 1.2;
}

.about-sidebar {
    flex: 0.8;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.about-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a472a;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.05rem;
}

.about-sidebar li:before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    margin-right: 1rem;
}

footer {
    background: #1a472a;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

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

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

.contact-grid {
    display: flex;
    gap: 3rem;
    padding: 3rem 0;
}

.contact-info {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.contact-map {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a472a;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a472a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a472a;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #1a472a;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
}

.thanks-box {
    max-width: 600px;
    background: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 71, 42, 0.98);
    color: white;
    padding: 1.8rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.cookie-accept {
    background: white;
    color: #1a472a;
}

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

.cookie-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-left,
    .hero-right {
        min-height: 50vh;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

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

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

    .about-split,
    .contact-grid {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left p {
        font-size: 1.1rem;
    }

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