body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #003366;
    color: white;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.logo-title {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    margin-right: 15px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, background-color 0.3s;
    padding: 5px 10px;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #ff9900;
    background-color: white;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

#hero {
    background-color: #006699;
    color: white;
    padding: 100px 0;
}

#hero h2 {
    font-size: 2.5em;
    margin: 0 0 20px;
}

#hero p {
    font-size: 1.2em;
    margin: 0 0 20px;
}

#hero .btn {
    background-color: #ff9900;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

#slider {
    width: 100%;
    overflow: hidden;
}

.slides img {
    width: 100%;
    display: none;
}

#services {
    padding: 50px 0;
    background-color: #f0f0f0;
}

#services h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

.service {
    margin-bottom: 20px;
    text-align: center;
}

#testimonials {
    background-color: #003366;
    color: white;
    padding: 50px 0;
}

#testimonials h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

.testimonial {
    margin-bottom: 20px;
    text-align: center;
}

#cta {
    background-color: #ff9900;
    color: white;
    padding: 50px 0;
    text-align: center;
}

#cta h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
}
