* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.header {
    background-color: #004080;
    color: white;
    padding: 1rem 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar ul li {
    font-size: 1.2rem;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.navbar ul li a:hover {
    background-color: #003366;
    border-radius: 5px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    background-color: #f4f4f4;
}

.hero-text {
    max-width: 50%;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: #004080;
}

.hero-text p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.about, .services, .contact {
    padding: 2rem;
    text-align: center;
}

.service-item {
    margin: 1.5rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #004080;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 1.5rem;
}

.cta-button:hover {
    background-color: #003366;
}

footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.progress-bar {
    width: 20%;
    background-color: #e0e0e0;
    border-radius: 25px;
    margin: 20px auto;
    height: 25px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #004080;
    width: 60%; /* Progress level */
    border-radius: 25px;
}

