/* Используем цвета: #100b0b (body), #ff8c00 (accent) */

.download-section {
    padding: 40px;
    background-color: #1a1a1a; /* Чуть светлее, чем body #100b0b */
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
    color: #ccc;
}

.card-title {
    color: #ff8c00;
    font-size: 32px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff8c00;
    padding-bottom: 15px;
}

.description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Контейнер для двух колонок скачивания (современно и красиво) */
.download-options-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.download-option {
    background-color: #2c2c2c;
    padding: 30px 20px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.download-option:hover {
    transform: translateY(-5px);
}

.download-option h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 22px;
}

.download-option p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Кнопки */
.download-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s;
    box-sizing: border-box;
}

.download-btn.primary {
    background-color: #ff8c00;
    color: white;
}

.download-btn.primary:hover {
    background-color: #e07b00;
}

.download-btn.secondary {
    background-color: #444;
    color: #fff;
}

.download-btn.secondary:hover {
    background-color: #555;
}

.download-btn i {
    margin-right: 8px;
}

/* Инструкции */
.instruction-box {
    margin-top: 40px;
    padding: 20px;
    background-color: #2c2c2c;
    border-left: 5px solid #ff8c00;
    border-radius: 4px;
}

.instruction-box h4 {
    color: #fff;
    margin-bottom: 10px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .download-options-container {
        flex-direction: column;
    }
}
