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

:root {
    --primary: #2d5a4a;
    --secondary: #8b6f47;
    --accent: #c49b63;
    --dark: #1a1a1a;
    --light: #f8f6f3;
    --gray: #6b6b6b;
    --white: #ffffff;
}

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

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

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

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--gray);
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    border-radius: 4px;
    margin-left: 1rem;
}

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

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

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

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

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

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

.hero-right {
    background-color: #e8dcc8;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

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

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

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

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

.split-section {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

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

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

.split-right {
    background-color: #d4c5b0;
    position: relative;
    overflow: hidden;
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.split-reverse {
    flex-direction: row-reverse;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 2rem;
    background: var(--light);
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s;
    min-width: 280px;
}

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

.service-icon {
    width: 100%;
    height: 200px;
    background-color: #e0d5c7;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-select {
    width: 100%;
}

.form-section {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 2rem;
}

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

.form-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

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

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

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

.about-intro {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.about-intro .section-title {
    margin-bottom: 2rem;
}

.about-intro .section-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

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

.contact-info {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    flex: 1;
    background-color: #c4b5a0;
    position: relative;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.contact-item p {
    opacity: 0.9;
    line-height: 1.8;
}

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

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

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary);
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

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

.legal-page li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.disclaimer {
    background: #fff3e0;
    padding: 2rem;
    border-left: 4px solid var(--accent);
    margin: 2rem 0;
    border-radius: 4px;
}

.disclaimer p {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

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

    nav {
        gap: 1rem;
    }

    .header-wrapper {
        flex-wrap: wrap;
    }
}