* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Навигация */
.navbar {
    background: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; }
.orange { color: #ff7f50; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li {
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links li:hover { color: #ff7f50; }

.burger { display: none; cursor: pointer; }
.burger span { display: block; width: 25px; height: 3px; background: #333; margin: 5px 0; transition: 0.3s; }

/* Управление страницами */
.page { display: none; animation: fadeIn 0.5s ease; }
.page.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Герой-секция */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1559496417-e7f25cb247f3?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 1rem; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 1.3rem; font-weight: 300; margin-bottom: 2rem; }

.btn-hero {
    background: #ff7f50;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
}

.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,127,80,0.3); }

/* Секции */
.section { padding: 5rem 0; }
.section-title { text-align: center; font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 2rem; }
.text-center { text-align: center; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Услуги */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; padding-bottom: 1.5rem; }
.service-card img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 1rem; }
.service-card h3 { color: #ff7f50; margin-bottom: 0.5rem; }
.service-card p { padding: 0 1rem; color: #666; }

/* Инфо-боксы и политики */
.info-box, .complaint-box, .policy-block {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #ff7f50;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-box h3, .complaint-box h3, .policy-block h3 { margin-bottom: 1rem; color: #333; font-size: 1.4rem; }
.info-box p, .complaint-box p, .policy-block p { margin-bottom: 0.8rem; line-height: 1.8; color: #555; }
.complaint-box p { font-size: 0.95rem; }

/* PDF кнопка */
.pdf-download { text-align: center; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #eee; }
.pdf-download p { margin-bottom: 1rem; font-weight: 600; }

/* Контакты */
.contact-wrapper { display: flex; gap: 3rem; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 250px; font-size: 1.1rem; }
.contact-form { flex: 1.5; min-width: 300px; display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { padding: 1rem; border: 1px solid #ddd; border-radius: 5px; font-family: 'Poppins', sans-serif; }
.contact-form textarea { height: 150px; resize: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #ff7f50; outline: none; }

.hidden { display: none; text-align: center; margin-top: 1rem; color: green; font-weight: 600; }

/* Футер */
.footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}
.footer span { cursor: pointer; color: #ff7f50; text-decoration: underline; }

/* Мобильная версия */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        top: 70px;
        background: #fff;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .burger { display: block; }
    .hero h1 { font-size: 2.5rem; }
}