* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f2f6fc;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #184C98;
    padding: 20px 0;
    color: white;
}

header .logo {
    display: inline-block;
}

header .logo h1 {
    display: inline-block;
    margin-left: 10px;
}

header nav {
    display: inline-block;
    float: right;
}

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
}

header nav .active {
    text-decoration: underline;
}

.hero {
    background-color: #4A90E2;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta {
    background-color: #184C98;
    padding: 10px 30px;
    border: none;
    color: white;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 5px;
}

.features,
.about,
.testimonials,
.contact,
.services-overview {
    padding: 40px 0;
}

h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.feature-cards,
.service-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-card,
.testimonial-card,
.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
}

footer {
    background-color: #184C98;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}