body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#0b0f19;
    color:white;
}

/* WRAPPER */
.elite-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:40px;
    padding:80px 20px;
    max-width:1200px;
    margin:auto;
}

/* TEXT */
.elite-content{
    text-align:center;
}

.elite-content h2{
    font-size:40px;
    margin-bottom:15px;
}

.elite-content p{
    color:#a0a6b3;
    max-width:520px;
    margin:auto;
    margin-bottom:25px;
    line-height:1.6;
}

.elite-content button{
    padding:12px 22px;
    border:none;
    border-radius:30px;
    background:#3b82f6;
    color:white;
    font-size:15px;
    cursor:pointer;
    transition:0.3s;
}

.elite-content button:hover{
    background:#2563eb;
}

/* IMAGE */
.elite-image img{
    width:100%;
    max-width:520px;
    border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

/* DESKTOP RESPONSIVE */
@media(min-width:900px){

    .elite-wrapper{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }

    .elite-content{
        text-align:left;
        flex:1;
    }

    .elite-image{
        flex:1;
        display:flex;
        justify-content:flex-end;
    }
}