﻿.learn-hero {
    padding: 120px 20px;
    text-align: center;
    background: #0f0f0f;
}

    .learn-hero h1 {
        color: white;
        font-size: 60px;
        font-weight: 700;
    }

    .learn-hero p {
        color: #b5b5b5;
        max-width: 700px;
        margin: 30px auto;
        font-size: 20px;
    }

.learn-content .container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    padding: 80px 20px;
}

.learn-card {
    background: #181818;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    transition: .3s;
}

    .learn-card:hover {
        transform: translateY(-8px);
    }

    .learn-card i {
        color: #d4141f;
        font-size: 55px;
    }

    .learn-card h3 {
        color: white;
        margin-top: 25px;
    }

    .learn-card p {
        color: #b5b5b5;
    }

.learn-bottom {
    padding: 90px 20px;
    text-align: center;
}

    .learn-bottom h2 {
        color: white;
        margin-bottom: 40px;
    }

.shop-btn {
    background: #d4141f;
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

    .shop-btn:hover {
        color: white;
        background: #b00f1a;
    }
