/* ========================================
   ОСНОВНЫЕ СТИЛИ — МИНИМАЛИЗМ
   ======================================== */

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

body {
    background: #ffffff;
    color: #1a2c3e;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Заголовки секций */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: #1a2c3e;
    position: relative;
    padding-bottom: 12px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f5a623;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 60px 0 30px;
}

.section-link {
    color: #00afac;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
}

.section-link:hover {
    color: #f5a623;
}

/* Кнопки */
.btn, .search-btn, .tour-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #f5a623;
    color: white;
}

.btn-primary:hover {
    background: #e09515;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #00afac;
    color: white;
}

.btn-secondary:hover {
    background: #008a88;
    transform: translateY(-2px);
}

/* Отступы между блоками */
section, .search-tours, .country-prices-section,
.tours-grid, .news-grid, .benefits-section,
.popular-destinations {
    margin-bottom: 70px;
}