/* General Styles */
body {
    font-family:system-ui ;
    margin: 0;
    padding: 0;
    text-align: center;
}

h2 {
    margin-bottom: 10px;
}

/* Header */
header {
    background-color: #004080;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Slider */
.slider {
    position: relative;
    max-width: 100%;
    height: 300px;
    overflow: hidden;
}

.slides img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: none;
}

.slides img.active {
    display: block;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* About Section */
#about {
    padding: 40px;
    background-color: #f4f4f4;
}

/* Services Section */
#services {
    padding: 40px;
    background-color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-box {
    background: #e0e0e0;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    width: 250px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #004080;
    color: white;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}
