/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #ffffff;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo img {
  max-height: 60px;
}

header h1 {
  text-align: center;
  color: #04244e;
  margin: 10px 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 10px;
  flex-wrap: wrap;
}

nav ul li {
  margin: 10px 15px;
}

nav ul li a {
  text-decoration: none;
  color: #04244e;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #0073e6;
}

.cover-section {
  text-align: center;
  padding: 20px;
  background-color: #e8f0fc;
}

.cover-section img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 40px 20px;
}

.service-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.service-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  width: 45%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  border-radius: 5px;
  height: auto;
  margin-bottom: 10px;
}

h2 {
  text-align: center;
  color: #04244e;
  margin-bottom: 20px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

form button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #04244e;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #00509e;
}

footer {
  text-align: center;
  background-color: #04244e;
  color: #fff;
  padding: 20px;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .service-gallery {
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    width: 90%;
  }

  header .logo,
  header h1 {
    text-align: center;
  }

  body {
    font-size: 16px;
  }

  h1, h2, h3 {
    font-size: 1.5em;
  }

  form {
    width: 90%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  nav ul li {
    margin: 8px 0;
  }

  .cover-section img {
    height: auto;
  }
}
