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

:root {
    --primary: #2c2c2c;
    --accent: #d4a574;
    --light: #f8f6f3;
    --dark: #1a1a1a;
    --text: #4a4a4a;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--light);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.hero-right {
    flex: 1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23d4a574" width="800" height="600"/><circle cx="400" cy="300" r="150" fill="%23f8f6f3" opacity="0.3"/></svg>') center/cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    max-width: 350px;
}

h1 {
    font-size: 3.5rem;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #c59563;
    transform: translateY(-2px);
}

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

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

.split-left {
    background: #fff;
}

.split-right {
    background: var(--light);
}

.reverse .split-left {
    order: 2;
    background: var(--light);
}

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

h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.service-card {
    background: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent);
    transition: transform 0.3s;
}

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

.service-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.service-desc {
    color: var(--text);
    line-height: 1.6;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--accent), #e5c9a5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600"><path d="M300 100 L400 300 L300 500 L200 300 Z" fill="white" opacity="0.1"/></svg>') center/contain no-repeat;
}

.form-container {
    background: #fff;
    padding: 3rem;
    max-width: 600px;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s;
}

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

.inline-cta {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
    transition: all 0.3s;
}

.inline-cta:hover {
    color: var(--dark);
    border-color: var(--dark);
}

.testimonial-box {
    background: #fff;
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 6px solid var(--accent);
    font-style: italic;
    position: relative;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--dark);
    font-style: normal;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

.benefit-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.footer {
    background: var(--dark);
    color: #fff;
    padding: 3rem 5%;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
}

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

.cookie-accept:hover {
    background: #c59563;
}

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

.contact-info {
    background: var(--light);
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.3rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

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

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 5%;
    background: var(--light);
}

.thanks-box {
    background: #fff;
    padding: 4rem;
    max-width: 600px;
    text-align: center;
    border: 3px solid var(--accent);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.thanks-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

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

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .footer {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
