body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f7fa;
    color: #1f2937;
}

header {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    margin: 0;
    font-size: 42px;
}

header p {
    font-size: 20px;
    margin-top: 15px;
}nav {
    background-color: #0b1f3a;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
    font-weight: bold;
}

nav a:hover {
    color: #4da3ff;
}.hero {
    text-align: center;
    padding: 50px 20px;
}

.hero img {
    width: 250px;
    max-width: 80%;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
}.quote-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background-color: #0b1f3a;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.quote-button:hover {
    background-color: #4da3ff;
}.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-box {
    width: 280px;
    padding: 25px;
    background-color: #f2f2f2;
    border-radius: 8px;
}

.service-box h3 {
    color: #0b1f3a;
}footer {
    background-color: #0b1f3a;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

footer h3 {
    margin-bottom: 10px;
}

footer p {
    margin: 8px;
}

.copyright {
    font-size: 14px;
    margin-top: 20px;
}