/* ===== ОСНОВНЫЕ СТИЛИ ЛАЙАУТА ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Стили основного блока */
.found-car-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.main-buttons-section {
    padding: 40px 0;
    background: #f8f9fa;
    text-align: center;
}

.buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.content-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 40px 0 20px 0;
    text-align: center;
}

/* Адаптивность лайаута */
@media (max-width: 768px) {
    .found-car-section {
        padding: 60px 0;
    }
    
    .buttons-container,
    .content-buttons-container {
        flex-direction: column;
        align-items: center;
    }
}