body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #1A2930;
  background: #F7F7F7;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 45px;
  background: #1A2930;
  color: white;
}

.logo img {
  height: 140px;
  margin-right: 10px;
}

.nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: #283A46;
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 25px;
  padding-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.card img {
  width: 50%;
  border-radius: 5px;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-info {
  text-align: left;
  max-width: 300px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border: 1px solid #CCC;
  border-radius: 4px;
}

.contact-form button {
  padding: 12px 20px;
  background: #FFC107;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.footer {
  background: #1A2930;
  color: white;
  padding: 15px;
  text-align: center;
}
