body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-color: #002147;
    padding: 20px;
    text-align: center;
    color: white;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
#hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 100px 20px;
    color: white;
}
.cta-button {
    background: #ff8c00;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.feature-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}
.feature-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
}
#contact {
    text-align: center;
    padding: 50px;
    background: #002147;
    color: white;
}
form input, form textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}
button {
    background: #ff8c00;
    padding: 10px 20px;
    border: none;
    color: white;
    border-radius: 5px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #002147;
    color: white;
}
