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

:root {
    --primary: #8B4513;
    --secondary: #D2691E;
    --dark: #2C1810;
    --light: #F5E6D3;
    --accent: #CD853F;
    --text: #3E2723;
    --white: #FFFFFF;
    --gray: #6D4C41;
}

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

.ad-disclosure {
    background: var(--light);
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    border-bottom: 1px solid var(--accent);
}

header {
    position: relative;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
    position: relative;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: var(--gray);
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.hero-image-diagonal {
    width: 55%;
    position: relative;
    background-color: var(--accent);
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-overlap {
    max-width: 1400px;
    margin: -80px auto 0;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.card-floating {
    background: var(--white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 8px;
    margin-bottom: 60px;
}

.card-floating h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.card-floating p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

.services-asymmetric {
    padding: 100px 40px 80px;
    background: var(--white);
}

.services-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--light);
    padding: 40px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    border-left: 5px solid var(--secondary);
    transition: all 0.3s;
    position: relative;
}

.service-card:nth-child(even) {
    margin-top: 40px;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin-top: 20px;
}

.about-split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.about-image-container {
    flex: 1;
    position: relative;
    background-color: var(--light);
}

.about-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.about-content-side {
    flex: 1;
}

.about-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-content-side p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

.form-section-offset {
    background: var(--dark);
    padding: 100px 40px;
    position: relative;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 0 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.form-container-asymmetric h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--light);
    border-radius: 4px;
    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);
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-column p,
.footer-column ul {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-column a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
    font-size: 0.9rem;
    color: var(--gray);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 25px 40px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content p {
    margin-bottom: 10px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

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

.btn-reject {
    background: var(--light);
    color: var(--text);
}

.btn-reject:hover {
    background: var(--accent);
    color: var(--white);
}

.contact-layout {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-layout h1 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--dark);
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--gray);
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark);
}

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

.legal-page p,
.legal-page li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text);
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: var(--light);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.thanks-container p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--gray);
}

.disclaimer-box {
    background: var(--light);
    padding: 30px;
    border-left: 4px solid var(--accent);
    margin: 40px auto;
    max-width: 1200px;
}

.disclaimer-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

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

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

    .hero-content-offset,
    .hero-image-diagonal {
        width: 100%;
    }

    .about-split-reverse {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        margin-top: 0;
    }

    .contact-grid {
        flex-direction: column;
    }

    nav ul {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .hero-content-offset h1 {
        font-size: 2.2rem;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .form-container-asymmetric {
        padding: 30px 20px;
    }
}