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

:root {
    --primary: #8B2635;
    --secondary: #D4A574;
    --dark: #1A1A1A;
    --light: #F5F5F5;
    --gray: #666666;
    --white: #FFFFFF;
}

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

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

header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px 0;
}

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

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

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

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark);
}

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

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

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

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

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

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

.split-hero {
    min-height: 85vh;
    background: linear-gradient(135deg, var(--primary) 0%, #5A1A25 100%);
}

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

.split-hero .split-right {
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray);
}

.split-hero p {
    color: rgba(255,255,255,0.9);
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 2px;
    margin-top: 20px;
}

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

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

.btn-secondary:hover {
    background: #C29564;
}

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

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

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}

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

.service-card h3 {
    color: var(--primary);
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.price-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

.form-section {
    background: var(--light);
    padding: 80px 60px;
}

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

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

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

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #DDD;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #E0E0E0 0%, #C0C0C0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 18px;
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

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

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

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    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-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons .btn {
    margin: 0;
    padding: 12px 30px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-left: 4px solid var(--primary);
}

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

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-item p {
    margin: 5px 0;
}

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

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

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

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

.legal-content ul {
    padding-left: 40px;
}

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

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

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

.thanks-container h1 {
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.about-split {
    display: flex;
    gap: 60px;
    margin: 40px 0;
}

.about-column {
    flex: 1;
}

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

    .split-left,
    .split-right {
        padding: 50px 30px;
    }

    .reverse .split-left {
        order: 1;
    }

    .reverse .split-right {
        order: 2;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 20px;
    }

    nav ul.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

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

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

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

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .about-split {
        flex-direction: column;
        gap: 30px;
    }
}
