:root {
    --primary-color: #8B5A2B; /* Древесный */
    --secondary-color: #2C3E50; /* Темный */
    --light-bg: #F9F9F9;
    --text-color: #333;
    --white: #ffffff;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list { display: flex; gap: 20px; align-items: center; }
.nav-list a { font-weight: 500; transition: color 0.3s; }
.nav-list a:hover { color: var(--primary-color); }

.btn-nav {
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    color: var(--primary-color) !important;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* Hero */
.hero {
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover { background: #6d4620; }

/* Sections */
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2rem; color: var(--secondary-color); }

/* Services */
.services { background: var(--light-bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-5px); }
.service-card h3 { margin-bottom: 15px; color: var(--primary-color); }

/* Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}
.checkbox-group { display: flex; align-items: center; gap: 10px; }
.checkbox-group input { width: auto; }

/* Footer */
.footer { background: var(--secondary-color); color: #ccc; padding: 50px 0 20px; }
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.footer-info h4 { color: var(--white); margin-bottom: 15px; }
.footer-links a { display: block; margin-bottom: 5px; color: #ccc; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { text-align: center; border-top: 1px solid #444; padding-top: 20px; font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px;
    text-align: center;
    display: none; /* JS will show it */
    z-index: 9999;
}
.cookie-banner a { text-decoration: underline; }
.btn-sm {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 5px 15px;
    margin-left: 15px;
    cursor: pointer;
    border-radius: 3px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-list { display: none; } /* Simplified for this snippet */
    .footer-content { flex-direction: column; gap: 30px; }
}