
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#f2f2f2;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

/* Container principal */
.welcome-container{
    background:white;
    width:100%;
    max-width:400px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    display:flex;
    flex-direction:column;
}

/* Image */
.image-section{
    background:linear-gradient(135deg,#ffffff,#ffffff);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.image-section img{
    width:200%;
    max-width:250px;
}

.button-group{
    display:flex;
    gap:10px;
}

.btn-home{
    flex:1;
    padding:15px;
    border-radius:30px;
    border:2px solid var(--awa-primary);
    background:white;
    color:var(--awa-primary);
    font-size:15px;
    cursor:pointer;
    transition:0.3s;
}

.btn-home:hover{
    background:var(--awa-light);
}

.btn-start{
    flex:1;
}

/* Contenu */
.content-section{
    padding:30px 25px;
    text-align:center;
}

.content-section h1{
    font-size:22px;
    margin-bottom:15px;
    color:#D6335C;
}

.content-section p{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:25px;
}

/* Dots */
.dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-bottom:25px;
}

.dots span{
    width:8px;
    height:8px;
    background:#ccc;
    border-radius:50%;
}

.dots .active{
    background:#D6335C;
    width:18px;
    border-radius:10px;
}

/* Bouton */
.btn-start{
    width:100%;
    padding:15px;
    border:none;
    border-radius:30px;
    background:#D6335C;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.btn-start:hover{
    background:#c9cacd;
}

/* Responsive Desktop */
@media (min-width:768px){

    body{
        background:#eaeaea;
    }

    .welcome-container{
        max-width:450px;
    }

}
