body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header {
  background: #0a2540;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: #f4f4f4;
}

.image-banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #0a2540;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
}

button {
  padding: 12px;
  background: #0a2540;
  color: white;
  border: none;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 300px;
  border: 0;
  margin-top: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0a2540;
  color: white;
}
