* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #f5f7fa;
    color: #333;
}

.hero {
    background: linear-gradient(rgba(0,78,146,0.85), rgba(0,78,146,0.85)),
    url('https://images.unsplash.com/photo-1517524206127-48bbd363f3d7?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

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

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.button {
    background: #ff9800;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
}

.button:hover {
    background: #e68900;
}

section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

section h2 {
    text-align: center;
    color: #004e92;
    margin-bottom: 30px;
}

.service-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-box h3 {
    margin-top: 20px;
    color: #004e92;
}

.why ul {
    list-style: none;
    max-width: 700px;
    margin: auto;
}

.why li {
    background: white;
    margin: 12px 0;
    padding: 15px;
    border-left: 5px solid #004e92;
    border-radius: 5px;
}

footer {
    background: #004e92;
    color: white;
    text-align: center;
    padding: 30px;
}
/* Quote Form */

form {
    max-width: 700px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

form label {
    font-weight: bold;
    color: #004e92;
    margin-top: 5px;
}

form button {
    background: #004e92;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

form button:hover {
    background: #003366;
}
/* =========================
   QUOTE FORM
========================= */

#quote {
    background: #ffffff;
    padding: 60px 20px;
}

#quote h2 {
    text-align: center;
    color: #004e92;
    margin-bottom: 30px;
}

form {
    max-width: 700px;
    margin: 0 auto;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

form textarea {
    height: 140px;
}

form button {
    width: 100%;
    background: #004e92;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
}

form button:hover {
    background: #0066cc;
}
