

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:linear-gradient(135deg,#0f172a,#1e1b4b,#312e81);
    color:white;
    padding:15px;
}

.training-container{
    width:100%;
    max-width:1000px;
    margin:auto;
    background:rgba(255,255,255,0.05);
    border:2px solid #39ff14;
    border-radius:20px;
    padding:25px;
    box-shadow:0 0 25px rgba(57,255,20,0.4);
}

.training-title{
    text-align:center;
    font-size:clamp(28px,5vw,45px);
    color:#39ff14;
    margin-bottom:20px;
}

.training-intro{
    text-align:center;
    font-size:clamp(15px,2vw,18px);
    line-height:1.8;
    margin-bottom:30px;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.program-card{
    background:rgba(255,255,255,0.08);
    border-left:5px solid #39ff14;
    border-radius:15px;
    padding:20px;
    transition:0.3s;
}

.program-card:hover{
    transform:translateY(-5px);
    background:rgba(57,255,20,0.15);
}

.program-card h3{
    color:#ffd700;
    margin-bottom:15px;
}

.program-card p{
    line-height:1.7;
}

.benefits{
    margin-top:35px;
}

.benefits h2{
    text-align:center;
    color:#39ff14;
    margin-bottom:20px;
}

.benefits ul{
    list-style:none;
}

.benefits li{
    background:rgba(255,255,255,0.08);
    margin:10px 0;
    padding:15px;
    border-radius:10px;
    border-left:5px solid #ffd700;
}

@media(max-width:768px){

    body{
        padding:10px;
    }

    .training-container{
        padding:15px;
    }

    .program-card{
        padding:15px;
    }

}
