<style>

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
line-height:1.6;
color:#0e0e0e;
}


/* HEADER */

header{
background:#ffffff;
color:#59168B;
padding:20px 10%;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:50px;
width:auto;
}

nav a{
color:#59168B;
margin-left:20px;
text-decoration:none;
font-weight:500;
}


/* HERO */

.hero{
background:url('/image/banner-6.jpg') center/cover no-repeat;
height:70vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
padding:20px;
}

.hero h1{
font-size:40px;
background:rgba(0,0,0,0.6);
padding:20px;
border-radius:5px;
}


/* GENERAL SECTIONS */

section{
padding:60px 10%;
}

.section-title{
text-align:center;
margin-bottom:40px;
font-size:32px;
color:#59168B;
}


/* ABOUT */

.about{
max-width:900px;
margin:auto;
text-align:center;
}


/* SERVICES */

.services{
display:flex;
flex-wrap:wrap;
gap:20px;
justify-content:center;
}

.service-box{
flex:1 1 250px;
background:#f4f4f4;
padding:25px;
border-radius:6px;
text-align:center;
transition:0.3s;
}

.service-box:hover{
background:#e9f2ff;
transform:translateY(-5px);
}


/* CONSULTATION */

.consultation-section{
background:#f4f4f4;
padding:80px 10%;
}

.consultation-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.consultation-text{
flex:1;
}

.star{
font-size:40px;
color:#999;
margin-bottom:20px;
}

.consultation-text h2{
font-size:32px;
margin-bottom:20px;
font-weight:500;
}

.consultation-text ul{
list-style:none;
}

.consultation-text ul li{
margin-bottom:18px;
padding-left:28px;
position:relative;
line-height:1.6;
}

.consultation-text ul li:before{
content:"✓";
position:absolute;
left:0;
color:#59168B;
font-weight:bold;
}

.consultation-image{
flex:1;
}

.consultation-image img{
width:100%;
border-radius:20px;
}


/* PLACEMENT */

.placement-section{
background:#f4f4f4;
padding:80px 10%;
}

.placement-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}

.placement-image{
flex:1;
}

.placement-image img{
width:100%;
max-width:450px;
}

.placement-text{
flex:1;
}

.placement-text h2{
font-size:32px;
margin-bottom:20px;
font-weight:500;
}

.placement-text ul{
list-style:none;
}

.placement-text ul li{
margin-bottom:18px;
padding-left:28px;
position:relative;
line-height:1.6;
}

.placement-text ul li:before{
content:"✓";
position:absolute;
left:0;
color:#59168B;
font-weight:bold;
}


/* CONTACT */

.contact{
text-align:center;
}

.contact p{
margin:10px 0;
}


/* FOOTER */

footer{
background:#111;
color:#fff;
text-align:center;
padding:20px;
margin-top:40px;
}


/* RESPONSIVE */

@media(max-width:768px){

header{
flex-direction:column;
gap:10px;
}

nav a{
margin:0 10px;
}

.hero h1{
font-size:28px;
}

.consultation-container,
.placement-container{
flex-direction:column;
text-align:center;
}

.consultation-text ul li,
.placement-text ul li{
padding-left:0;
}

.consultation-text ul li:before,
.placement-text ul li:before{
display:none;
}

}

</style>