* {margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif;}
body {line-height: 1.6; color: #333;}
header {background: #004080; color: #fff; padding: 20px 0; text-align: center;}
header h1 {font-size: 2rem;}
nav ul {list-style: none; display: flex; justify-content: center; gap: 20px; margin-top: 10px;}
nav ul li a {color: #fff; text-decoration: none; font-weight: bold;}
.hero {background: url('https://images.unsplash.com/photo-1605522363571-45d31a42d691') no-repeat center center/cover; 
       color: white; height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 20px;}
.hero h2 {font-size: 2.5rem; margin-bottom: 20px;}
.hero p {font-size: 1.2rem; max-width: 700px;}
.hero button {margin-top: 20px; padding: 10px 20px; border: none; background: #ff9900; color: #fff; font-size: 1rem; cursor: pointer; border-radius: 5px;}
section {padding: 50px 20px; max-width: 1000px; margin: auto;}
h2 {color: #004080; margin-bottom: 20px;}
.services {display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;}
.service {background: #f4f4f4; padding: 20px; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.1);}
footer {background: #004080; color: #fff; text-align: center; padding: 20px;}
form {display: flex; flex-direction: column; gap: 10px;}
input, textarea {padding: 10px; border: 1px solid #ccc; border-radius: 5px;}
button.submit {background: #004080; color: #fff; padding: 10px; border: none; border-radius: 5px; cursor: pointer;}