/* Сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Общий контейнер секции "Questions about the tour" */
.container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

    /* центрирование и ограничение ширины */
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Заголовок секции */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
    border-radius: 2px;
}

/* Сетка 2 колонки */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Карточки слева/справа */
.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;

    /* убрал width: 70% – теперь карточка занимает свою колонку нормально */
    width: 100%;
    margin: 0;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.info-list {
    list-style: none;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.5;
}

.info-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.info-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Блок цены */
.price-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d4a574, #e6b887);
}

.price-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

/* Галерея (если используешь) */
.gallery-section {
    margin: 40px 0;
    text-align: center;
}

.gallery-title {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.gallery-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2c5aa0;
    transform: scale(1.2);
}

/* Специальная заметка снизу */
.special-note {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 5px solid #2c5aa0;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    font-style: italic;
    color: #555;
    line-height: 1.6;

    /* центрирование и ограничение ширины */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Адаптив */
@media (max-width: 768px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .info-card,
    .price-section {
        padding: 30px 25px;
    }
    
    .container {
        padding: 40px 15px;
    }
}