* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; background: #f5f5f5; color: #333; }
.container { max-width: 1000px; margin: 0 auto; padding: 20px; }

header { background: #2c5530; color: white; padding: 15px 0; }
header .container { display: flex; justify-content: space-between; align-items: center; }
header .logo { font-size: 24px; font-weight: bold; text-decoration: none; color: white; }
header nav a { color: white; margin-left: 20px; text-decoration: none; }
header nav a:hover { text-decoration: underline; }

.btn { display: inline-block; background: #2c5530; color: white; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; font-size: 14px; }
.btn:hover { background: #3d7a42; }
.btn-danger { background: #dc3545; }
.btn-danger:hover { background: #b02a37; }
.btn-small { padding: 5px 10px; font-size: 12px; }

.card { background: white; border-radius: 8px; padding: 20px; margin-bottom: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.card h2, .card h3 { color: #2c5530; margin-bottom: 15px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

form .field { margin-bottom: 15px; }
form label { display: block; margin-bottom: 5px; font-weight: bold; }
form input, form textarea, form select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; }
form textarea { min-height: 80px; resize: vertical; }

table { width: 100%; border-collapse: collapse; margin-top: 10px; }
th, td { padding: 10px; text-align: left; border-bottom: 1px solid #eee; }
th { background: #f8f9fa; }

.message { padding: 12px; border-radius: 4px; margin-bottom: 20px; }
.message.success { background: #d4edda; color: #155724; }
.message.error { background: #f8d7da; color: #721c24; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; margin-top: 15px; }
.slot-btn { background: #2c5530; color: white; padding: 12px; border: none; border-radius: 4px; cursor: pointer; font-size: 15px; }
.slot-btn:hover { background: #3d7a42; }

footer { background: #2c5530; color: white; text-align: center; padding: 20px 0; margin-top: 40px; }
footer a { color: white; }
/* === ГЛАВНАЯ СТРАНИЦА === */
.hero {
    background: linear-gradient(135deg, #2c5530 0%, #3d7a42 100%);
    color: white;
    padding: 60px 20px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
}
.hero h1 { font-size: 42px; margin-bottom: 15px; }
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 25px; }
.hero .btn { font-size: 18px; padding: 15px 35px; background: white; color: #2c5530; }
.hero .btn:hover { background: #f0f0f0; }

.section-title { font-size: 32px; color: #2c5530; margin: 40px 0 20px; text-align: center; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.about-photo { border-radius: 12px; width: 100%; height: auto; }
.about-photo-placeholder {
    background: #e8f0e8;
    border: 2px dashed #2c5530;
    border-radius: 12px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5530;
    font-size: 16px;
}

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 30px 0; }
.feature { background: white; padding: 25px; border-radius: 12px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.feature .icon { font-size: 40px; margin-bottom: 10px; }
.feature h3 { color: #2c5530; font-size: 18px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: #666; }

.video-placeholder {
    background: #e8f0e8;
    border: 2px dashed #2c5530;
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5530;
    margin: 30px 0;
}

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.review .stars { color: #ffc107; font-size: 18px; margin-bottom: 10px; }
.review .text { font-style: italic; color: #555; margin-bottom: 15px; }
.review .author { font-weight: bold; color: #2c5530; }

.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contacts-info { background: white; padding: 30px; border-radius: 12px; }
.contacts-info h3 { color: #2c5530; margin-bottom: 15px; }
.contacts-info p { margin-bottom: 10px; }
.map-placeholder {
    background: #e8f0e8;
    border: 2px dashed #2c5530;
    border-radius: 12px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5530;
}

@media (max-width: 768px) {
    .about-grid, .contacts-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 16px; }
}