/*
 * Основные стили сайта. Предусмотрен адаптивный дизайн.
 */
:root {
    --font-base: 'Inter', sans-serif;
}
body {
    margin: 0;
    font-family: var(--font-base);
    background: var(--background);
    color: var(--text);
}
a {
    color: var(--brand);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: var(--brand-hover);
}
header {
    background: var(--background);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
header nav a {
    margin: 0 0.5rem;
    font-weight: 500;
}
header .logo a {
    font-weight: 700;
    font-size: 1.25rem;
}
.lang-switch a {
    margin-left: 0.25rem;
}
.hero {
    background: url('/assets/img/hero.png') center/cover no-repeat;
    padding: 6rem 1rem;
    color: #fff;
    text-align: center;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-hover);
}
.btn-secondary {
    background: var(--brand);
    color: #fff;
}
.btn-secondary:hover {
    background: var(--brand-hover);
}
section {
    padding: 4rem 0;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.card {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
}
.card img {
    max-width: 100%;
    border-radius: 0.5rem;
}
.reasons {
    list-style: none;
    padding: 0;
    margin: 0;
}
.reasons li {
    margin-bottom: 1rem;
    font-size: 1rem;
}
.reasons strong {
    color: var(--brand);
}
.reviews blockquote {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    position: relative;
    font-style: italic;
}
.reviews blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    color: #555;
}
.faq details {
    margin-bottom: 1rem;
}
.faq summary {
    font-weight: 600;
    cursor: pointer;
}
.faq p {
    margin-top: 0.5rem;
}
.contact-page .map img {
    width: 100%;
    border-radius: 0.5rem;
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .cards {
        flex-direction: column;
    }
    header nav {
        flex-wrap: wrap;
    }
    header nav a {
        margin: 0.5rem 0.25rem;
    }
}