
        /* Герой секция */
        /* .freeride-hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        } */

        /* .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(11, 26, 46, 0.7), rgba(11, 26, 46, 0.9)),
                        url('source/foto/fon/freeride-hero.webp');
            background-size: cover;
            background-position: center;
            z-index: -1;
        } */

        /* .hero-content {
            max-width: 800px;
            padding: 0 20px;
        } */

        /* .main-title-frirad {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #f5f5f5;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            text-align: center;
        } */
/* 
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        } */

        /* .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        } */

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
        }

        /* Секции */
        .section {
            padding: 10px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .section p{
             color: #f0f0f1;
        }

        .section-tit {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #fff;
        }



        /* Экипировка */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.equipment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.equipment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.schup-icon img {
    width: 6rem;
    height: 6rem;
}

.equipment-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #f0f0f1;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.equipment-card p {
    color: #000000;
    /* text-shadow: 0px 0px 0px rgba(248, 248, 248, 0.5); */
}

/* Адаптивная сетка */
@media (max-width: 800px) {
.equipment-card h4 {

    font-size: 0.9rem;
}
.equipment-card p {
 font-size: 0.7rem;
}
}
@media (min-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 2000px) {
    .equipment-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 30px;
    }
}

/* Стили для модальных окон */
.modol {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    /* Добавляем выравнивание по центру */
    align-items: center;
    justify-content: center;
}

/* Класс для показа модального окна */
.modol.active {
    display: flex;
}

.modanoe-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalFadeIn 0.3s;
    /* Убираем margin: auto и добавляем максимальную высоту */
    max-height: 90vh;
    overflow-y: auto;
    /* Тень для лучшего визуального отделения */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes modalFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-50px) scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1001; /* Важно: чтобы крестик был поверх всего */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    color: #000;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.modol-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modol-body img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.modol-text {
    text-align: left;
}

.modol-text h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.modol-text p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Адаптивность модальных окон */
@media (min-width: 768px) {
    .modol-body {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .modol-body img {
        width: 40%;
        max-height: none;
    }
    
    .modol-text {
        width: 60%;
        padding-left: 25px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .modanoe-content {
        padding: 20px;
        width: 95%;
        margin: 10px;
    }
    
    .modol-body img {
        max-height: 200px;
    }
}

        /* Техника катания */
  .technique-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
}
.step h5{
    color: #00fa4b;
    text-shadow: 1px 1px 3px rgba(255, 249, 249, 0.5);

}

.step-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number {
    background: #ff6b6b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0; /* Чтобы кружок не сжимался */
}

.step-text {
    flex: 1;
    text-align: left;
}

.step-text h4 {
    color: rgb(235, 242, 247);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-text p {
    color: rgb(230, 236, 236);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Для мобильных устройств - уже и так работает как нужно */

/* Для планшетов и десктопов - можно оставить по центру если хотите */
@media (min-width: 768px) {
    .step-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        margin: 0 auto; /* Центрируем кружок на больших экранах */
    }
    
    .step-text {
        text-align: center;
    }
}

/* Альтернативный вариант - всегда слева */
/* 
@media (min-width: 768px) {
    .step-content {
        align-items: center;
        gap: 25px;
    }
    
    .step-text {
        text-align: left;
    }
}
*/
        /* Техника катания конец*/


        /* Безопасность */
        .safety-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .safety-item {
            background: rgba(255, 255, 255, 0.08);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #ff6b6b;
        }

        .safety-item h4 {
            color: #ff6b6b;
            margin-bottom: 10px;
        }

        /* Эмоции */
        .experience-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Цены */
        .price-table {
            width: 100%;
            margin: 50px auto;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
        }

        .price-table th, .price-table td {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .price-table th {
            background: rgba(27, 57, 245, 0.9);
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .price-table td {
            font-size: 1rem;
        }

        .price-table tr:last-child td {
            border-bottom: none;
        }

        .price-table .highlight {
            background: rgba(255, 107, 107, 0.2);
            font-weight: bold;
        }

        /* Футер */
        .footer {
            background: #011222;
            padding: 40px 5%;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer .logo img {
            height: 40px;
            width: auto;
        }

        .footer-menu {
            display: flex;
            gap: 20px;
        }

        .footer-menu a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: #ff6b6b;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .main-title-frirad {
                font-size: 2.5rem;
            }

            /* .bottom-header {
                flex-direction: column;
                gap: 15px;
            } */

            nav ul {
                gap: 15px;
            }

            .section {
                padding: 0 5%;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
            }

            .price-table th, .price-table td {
                padding: 12px 8px;
                font-size: 0.9rem;
            }
        }

        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.8s ease-out;
        }