body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #eef3f8;
}

header {
    background: #0084ff40;
    color: #003366;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* СИЛУЭТ МАШИНЫ */
header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparentpng.com/thumb/car/silhouette-car-png-17.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 300px;
    opacity: 0.15;
    top: 0;
    left: 0;
}

.logo {
    height: 60px;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.header-text {
    position: relative;
    z-index: 1;
}

.header-text h1 {
    margin: 0;
    font-size: 28px;
}

.header-text p {
    margin: 5px 0 0;
}

.main {
    text-align: center;
    padding: 40px 20px;
}

.title {
    font-size: 26px;
    margin-bottom: 25px;
    color: #003366;
}

.timer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px;
    padding: 25px;
    gap: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.time-block span {
    display: block;
    font-size: 34px;
    color: #0084ff;
    font-weight: bold;
}

.date-text {
    margin-top: 20px;
    color: #333;
}

.info-block {
    margin: 30px auto;
    width: 70%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.warning {
    margin: 25px auto;
    padding: 12px;
    width: 60%;
    background: #f8d7da;
    color: #842029;
    border-radius: 10px;
}

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    margin: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-site {
    background: #0084ff40;
    color: #003366;
}

.btn-vk {
    background: #0084ff40;
    color: #003366;
}

.btn:hover {
    transform: scale(1.05);
}

/* КОНТАКТЫ */
.contacts {
    margin: 50px auto;
    width: 85%;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contacts h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #003366;
}

.contacts-container {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.contacts-info {
    width: 40%;
    font-size: 16px;
    color: #333;
}

.map {
    width: 60%;
    border-radius: 10px;
    overflow: hidden;
}

/* ФУТЕР */
footer {
    text-align: center;
    padding: 15px;
    color: #555;
}

/* АДАПТИВ */
@media (max-width: 768px) {
    .contacts-container {
        flex-direction: column;
    }

    .contacts-info,
    .map {
        width: 100%;
    }
}