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

:root {
    --primary: #1a3a52;
    --secondary: #d4a574;
    --accent: #8b5a3c;
    --light: #f5f3f0;
    --dark: #2c2c2c;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

.split-section {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.split-left,
.split-right {
    flex: 1;
    padding: 5rem;
}

.split-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.split-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.reverse .split-left {
    order: 2;
    background: #9e7760;
}

.reverse .split-right {
    order: 1;
    background: #d4c9b8;
}

.split-hero {
    min-height: 90vh;
    background: var(--primary);
}

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

.split-hero .split-right {
    background-image: linear-gradient(rgba(26, 58, 82, 0.3), rgba(26, 58, 82, 0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23d4a574" width="1200" height="800"/><path fill="%231a3a52" opacity="0.1" d="M0 400 L600 200 L1200 400 L600 600 Z"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--white);
    padding: 2.5rem;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.form-container {
    background: var(--white);
    padding: 3rem;
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    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: var(--secondary);
}

.stats-container {
    display: flex;
    gap: 4rem;
    margin: 3rem 0;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.5rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 5%;
}

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

.footer-column {
    flex: 1;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 5%;
    display: none;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.cookie-banner.show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

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

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.dark-section {
    background: var(--primary);
    color: var(--white);
}

.dark-section .section-title {
    color: var(--white);
}

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

.testimonial {
    background: var(--accent);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary);
}

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

.content-page h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.content-page h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.content-page p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-page li {
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-left,
    .split-right {
        padding: 3rem 1.5rem;
    }

    .reverse .split-left,
    .reverse .split-right {
        order: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-banner.show {
        flex-direction: column;
        align-items: stretch;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
}
