/* Общие стили и сброс */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

:root {
    --primary-color: #007bff; /* Синий для кнопок и акцентов */
    --secondary-color: #28a745; /* Зеленый для CTA */
    --text-color: #333;
    --bg-light: #befadc;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.5em;
    font-weight: 900;
}

h2 {
    font-size: 2em;
    text-align: center;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #218838;
}

/* Шапка и Навигация */
header {
    background-color: #ebfbf4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    width: 200px;
    height: 200px;
    border-radius: 30%;

}
.logo:hover {
    transform: scale(1.2);
}
.contact-info a {
    font-size: 1.5em;
    font-weight: 900;
    color: var(--text-color);
    text-decoration: none;
}

.contact-info span {
    display: block;
    font-size: 0.8em;
    text-align: right;
}

/* Герой Секция (Первый экран) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 400;
}

.form-callback {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 30px auto 0;
    color: var(--text-color);
}

.form-callback input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.form-callback button {
    width: 100%;
}

/* Секции контента */
section {
    padding: 60px 0;
}

.why-us {
    background-color: #ebfbf4;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-top: 10px;
}

/* Brands section */
.brands {
    padding: 60px 0;
    background-color: #e5f1ff;
}

.brands h2 {
    text-align: center;
    margin-bottom: 40px;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.brand-logo {
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
}

.brand-logo img {
    max-width: 100%;
    height: auto;
}

/* Цены */
.prices {
    background-color: #ebfbf4;
 }

.price-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #ccc;
    font-size: 1.1em;
}

.price-item:last-child {
    border-bottom: none;
}

.price-name {
    font-weight: 700;
}

.price-value {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Порядок работы */
.workflow {
    background-color: #e5f1ff;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap; /* Для мобильной адаптации */
}

.step {
    flex-basis: calc(25% - 15px);
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
}

.step-number {
    font-size: 2em;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Футер */
footer {
    background: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        margin-top: 10px;
    }

    .contact-info a {
        font-size: 1.2em;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .steps {
        flex-direction: column;
    }

    .step {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}