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

body {
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
    background-color: #000; /* Чёрный фон */
    color: #fff; /* Белый текст */
}

.container {
    text-align: center;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background-color: #000; /* Чёрный фон */
    padding: 20px 0;
}

header h1 {
    color: #e63946; /* Красный акцент */
    font-size: 32px;
    display: inline-block;
}

nav {
    float: right;
}

@media (max-width: 868px) {
    nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: start;
        column-gap: 10px;
    }
}

nav a {
    color: #fff; /* Белый текст */
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;

    @media (max-width: 868px) {
        margin-left: 0;
        font-size: 16px;
    }
}

nav a:hover {
    color: #e63946;
}

.main-info {
    text-align: center;
    width: 90%;
    max-width: 1100px;
    margin: 40px auto 0;
}

.title {
    font-size: 36px;
    margin-bottom: 10px;

    @media (max-width: 869px) {
        font-size: 25px;
    }
}

.subtitle-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.subtitle-wrap p {
    max-width: 50%;
    font-size: 20px;

    @media (max-width: 869px) {
        max-width: 80%;
        font-size: 16px;
    }
}

.description .title {
    font-size: 25px;
    margin: 20px 0 10px;
}

.description .subtitle {
    font-size: 18px;

    @media (max-width: 869px) {
        font-size: 16px;
    }
}

.description .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.description .list strong {
    @media (max-width: 869px) {
        display: block;
    }
}

.description .list {
    max-width: 65%;
    text-align: start;

    @media (max-width: 869px) {
        max-width: 80%;
    }
}

.description .list p {
    font-size: 18px;

    @media (max-width: 869px) {
        font-size: 16px;
    }
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    margin-top: 35px;
    border-radius: 5px;
}

.cars {
    padding: 40px 0;
    text-align: center;
}

.cars h2 {
    font-size: 30px;

    @media (max-width: 869px) {
        font-size: 20px;
    }
}

.services-list {
    list-style: none;
    text-align: start;
    font-size: 20px;
    padding: 0;
}

.services h2 {
    font-size: 25px;

    @media (max-width: 869px) {
        font-size: 20px;
    }
}

.services-list li {
    margin: 15px 0;

    @media (max-width: 869px) {
        font-size: 16px;
    }
}

.services .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services .content {
    max-width: 70%;

    @media (max-width: 869px) {
        max-width: 80%;
    }
}

.services .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-grid img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1); /* Светлая тень */
}

blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
    color: #ccc; /* Светлый текст */
}

.contact form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 10px;
    border: 1px solid #444; /* Тёмная граница */
    border-radius: 5px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: #222; /* Тёмный фон */
    color: #fff; /* Белый текст */
}

.contact button {
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 12px;
    width: 200px;
    margin: 0 auto;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background-color: #000; /* Чёрный фон */
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: #fff; /* Белый текст */
}

#status {
    color: #fff; /* Белый текст */
    font-weight: bold;
}
