body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    color: #333;
    background: #f9f9f9;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 60px 20px;

    background: #005f99;
    color: white;
    text-align: center;
}
header h1 {
    font-size: 3em;
    margin-block-start: 0;
    margin-block-end: 0;
}
header p {
    font-size: 1.2em;
    margin-block-start: 0;
    margin-block-end: 0;
}
header img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.header-text {
    display: flex;
    flex-direction: column;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 20px;
    background: white;
}
.feature {
    flex: 1 1 300px;
    margin: 20px;
    text-align: center;
}
.feature img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}
.feature h3 {
    margin-top: 15px;
}
.cta {
    text-align: center;
    padding: 40px 20px;
    background: #eaf6ff;
}
.cta a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1em;
    background: #007acc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

footer {
    background: #003f66;
    color: white;
    text-align: center;
    padding: 20px;
}
footer a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
footer a:hover {
    color: #ccc;
}
