
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header {
    background-color: #0044cc; 
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.slider{
    position: absolute;
}

header .logo img {
    width: 150px;
}
.menu li{
    margin-left: 250px;
}
header nav ul {
    list-style-type: none;
    display: flex;
}
header nav ul li {
    margin: 0 15px;
}
header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.banner .slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content {
    margin-top: 180px;
    height: 500px;
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}
.content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    margin-bottom: 40px;
}
.services {
    display: flex;
    justify-content: space-around;
}

.service-item {
    background-color: white;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.service-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.service-item p {
    font-size: 16px;
}
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer ul {
    list-style-type: none;
    margin-top: 10px;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}
