
*{
    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;
}

.container{
    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);
}

.title{
    text-align:center;
    color:#39ff14;
    font-size:clamp(30px,5vw,50px);
    margin-bottom:20px;
}

.intro{
    text-align:center;
    line-height:1.8;
    font-size:clamp(16px,2vw,20px);
    margin-bottom:30px;
}

.section{
    background:rgba(255,255,255,0.08);
    border-left:5px solid gold;
    border-radius:15px;
    padding:20px;
    margin-bottom:20px;
}

.section h2{
    color:gold;
    margin-bottom:15px;
}

.section p{
    line-height:1.8;
}

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

.step-card{
    background:rgba(255,255,255,0.08);
    border-left:5px solid #39ff14;
    border-radius:15px;
    padding:20px;
    transition:0.3s;
}

.step-card:hover{
    transform:translateY(-5px);
    background:rgba(57,255,20,0.15);
}

.step-card h3{
    color:#39ff14;
    margin-bottom:10px;
}

.step-card p{
    line-height:1.7;
}

.cta{
    margin-top:30px;
    text-align:center;
    background:rgba(255,255,255,0.08);
    border-radius:15px;
    padding:25px;
    border:2px solid gold;
}

.cta h2{
    color:gold;
    margin-bottom:15px;
}

.cta p{
    line-height:1.8;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    background:#39ff14;
    color:black;
    text-decoration:none;
    font-weight:bold;
    border-radius:10px;
}

.btn:hover{
    background:gold;
}

@media(max-width:768px){

    .container{
        padding:15px;
    }

    .step-card{
        padding:15px;
    }

}
