        /* ========== Секция: Занятия в Клубе ========== */
        .club-section {
            width: 100%;
            min-height: 60vh; /* ← min-height вместо height */
            display: flex;
            justify-content: center;
            align-items: center;
            /* background-image: url('{{ url_for("static", filename="images/fon_test.jpg") }}'); */
            background-image: url('../images/fon_test.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            background-color: #3a3a3a;
            margin: 0;
            padding: 0;
            /* fixed-фон только на десктопе */
            background-attachment: fixed;
        }

        .club-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
            z-index: 1;
        }

        .club-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            text-align: center;
            color: white;
            padding: 2rem;
        }

        .club-section h2 {
            font-size: 2.4rem;
            margin-bottom: 30px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.6);
        }

        .club-list {
            list-style: none;
            padding: 0;
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .club-list li {
            margin-bottom: 16px;
            position: relative;
            padding-left: 32px;
        }

        .club-list li::before {
            content: "✓";
            color: #ffcc00;
            font-size: 1.4rem;
            position: absolute;
            left: 0;
            top: -2px;
            font-weight: bold;
        }

        /* Кнопка внутри секции клуба */
        .club-btn {
            display: inline-block;
            padding: 16px 60px;
            font-size: 1.4rem;
            font-weight: bold;
            color: #ff6b6b; /* Красный текст */
            background-color: #ffffff; /* Белая кнопка */
            text-decoration: none;
            border-radius: 50px;
            border: 2px solid #ffffff;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
            transition: all 0.25s ease;
            margin-top: 20px;
        }

        .club-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
            background-color: #fff5f5;
            color: #e03e3e;
        }

        .club-btn:active {
            transform: translateY(2px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        
        /* .highlight-text {
            color: #ff6b6b; /* или #e03e3e — выберите основной акцентный цвет 
        }        
        /* ... внутри @media (max-width: 768px) добавить: */
            .club-btn {
                padding: 14px 40px;
                font-size: 1.2rem;
                width: 90%;
                max-width: 300px;
            }

@media (max-width: 768px) {
    .club-section h2 {
        font-size: 1.7rem;      /* было 2.4rem */
        margin-bottom: 28px;
        line-height: 1.35;
    }

    .club-section h3 {
        font-size: 1.25rem;     /* уменьшено с ~1.5rem */
        margin-bottom: 13px;
        line-height: 1.4;
    }
}
        