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

:root {
    --primary: #d4621d;
    --secondary: #2c1810;
    --accent: #f4a261;
    --light: #fef5ed;
    --dark: #1a1a1a;
    --gray: #6b6b6b;
}

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

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

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--light);
    background: rgba(244, 162, 97, 0.2);
    padding: 5px 12px;
    border-radius: 4px;
}

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

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

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

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--light);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--secondary);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 60px 40px;
    background: white;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.15);
    margin-left: 8%;
    transform: translateY(-30px);
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--gray);
}

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

.cta-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.section {
    padding: 100px 0;
}

.section-offset {
    padding: 80px 0;
    background: var(--light);
}

.asymmetric-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.offset-left {
    flex: 1;
    min-width: 300px;
    transform: translateY(60px);
}

.offset-right {
    flex: 1.3;
    min-width: 350px;
}

.content-block {
    background: white;
    padding: 50px;
    box-shadow: 8px 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

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

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.content-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.image-block {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary);
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:nth-child(odd) {
    transform: translateY(-20px);
}

.service-card:nth-child(even) {
    transform: translateY(20px);
}

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

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

.service-card p {
    margin-bottom: 20px;
    color: var(--gray);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 20px 0;
}

.form-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #3d2519 100%);
    padding: 100px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    transform: rotate(-1deg);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary);
    transform: rotate(1deg);
}

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

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

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

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

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

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

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

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    display: none;
}

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

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

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

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

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

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

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

.cookie-reject:hover {
    background: white;
    color: var(--secondary);
}

.about-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--light);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: -15px 15px 0 var(--accent);
}

.about-text {
    flex: 1.2;
    min-width: 350px;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-asymmetric {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    min-width: 350px;
    background: var(--secondary);
    color: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--accent);
}

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

.info-item h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-map {
    flex: 1.3;
    min-width: 400px;
    background-color: var(--light);
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 80px 0;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--secondary);
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 80px 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--gray);
}

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

    .hero-content {
        margin-left: 0;
        padding: 40px 30px;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.3;
    }

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

    .offset-left {
        transform: translateY(0);
    }

    .content-block {
        padding: 30px;
    }

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        transform: translateY(0);
    }

    .form-container {
        padding: 40px 30px;
        transform: rotate(0);
    }

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

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