*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f4f4f4;
    color:#333;
    line-height:1.6;
}

header{
    background:#0066cc;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
}

.logo{
    font-size:32px;
    font-weight:bold;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    font-size:18px;
    font-weight:bold;
}

nav a:hover{
    color:#ffd700;
}

section{
    padding:80px 50px;
    text-align:center;
}

#home{
    background:white;
}

#home h1{
    font-size:48px;
    margin-bottom:20px;
}

#home p{
    font-size:22px;
}

#about{
    background:#eef5ff;
}

#services{
    background:white;
}

#services ul{
    list-style:none;
    margin-top:30px;
}

#services li{
    font-size:22px;
    margin:15px 0;
}

#contact{
    background:#0066cc;
    color:white;
}

h2{
    font-size:40px;
    margin-bottom:25px;
}

p{
    font-size:20px;
}