*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    min-height:100vh;
    background:linear-gradient(135deg, #eef3ff 0%, #f8f9ff 100%);
    color:#111827;
}

.welcome-container{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    padding:40px;
}

.image-section{
    flex:1;
    text-align:center;
}

.image-section img{
    width:100%;
    max-width:600px;
    border-radius:30px;
    box-shadow:0 30px 60px rgba(48, 64, 159, 0.12);
}

.content-section{
    flex:1;
    max-width:520px;
}

.logo{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.badge{
    background:#8ff5e8;
    padding:10px 20px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:25px;
    color:#0f172a;
}

h1{
    font-size:56px;
    line-height:1.05;
    margin-bottom:20px;
    color:#111827;
}

h1 span{
    color:#3122d1;
}

p{
    color:#475569;
    line-height:1.8;
    margin-bottom:30px;
    font-size:18px;
}

button{
    border:none;
    padding:16px 40px;
    border-radius:50px;
    background:#3122d1;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:background 0.2s ease;
}

button:hover,
.btn:hover{
    background:#2e1fc3;
}

.actions,
.hero-actions{
    margin-top:25px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:background 0.2s ease;
}

.btn-primary{
    background:#3122d1;
    color:white;
}

.btn-secondary{
    background:transparent;
    color:#3122d1;
    border:2px solid #3122d1;
}

@media (max-width:992px){
    .welcome-container{
        flex-direction:column;
        text-align:center;
    }

    h1{
        font-size:44px;
    }

    .image-section img{
        max-width:500px;
    }
}

@media (max-width:576px){
    .welcome-container{
        padding:20px;
    }

    h1{
        font-size:34px;
    }

    p{
        font-size:15px;
    }

    button{
        width:100%;
    }

    .image-section img{
        max-width:100%;
    }
}

