.spor-aktiviteleri {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.spor-aktiviteleri h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.aktiviteler-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.aktivite {
    width: 180px;
    text-align: center;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aktivite:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.aktivite p {
    font-size: 16px;
    color: #444;
    font-weight: bold;
    margin-top: 5px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .aktiviteler-container {
        flex-direction: column;
        align-items: center;
    }

    .aktivite {
        width: 90%;
    }
}
