* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
}

header {
    background: #0a1f44;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

nav a:hover {
    color: #00bfff;
}

.hero {
    background: linear-gradient(to right, #0a1f44, #003366);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.btn {
    background: #00bfff;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.services {
    background: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-box {
    background: #e9f1ff;
    padding: 20px;
    border-radius: 8px;
    width: 220px;
}

.quote form {
    max-width: 500px;
    margin: auto;
}

.quote input,
.quote textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.quote button {
    background: #0a1f44;
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
}

footer {
    background: #0a1f44;
    color: white;
    padding: 20px;
}
