body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

header {
  background: #0077cc;
  color: white;
  text-align: center;
  padding: 20px;
}

nav {
  background: #222;
  padding: 15px;
  text-align: center;
}

nav a {
  color: white;
  margin: 15px;
  text-decoration: none;
  font-size: 18px;
}

nav a:hover {
  color: #00bfff;
}

.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slides {
  display: none;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
}

.overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  color: white;
  text-align: center;
}

.overlay h2 {
  font-size: 60px;
  margin-bottom: 15px;
}

.overlay p {
  font-size: 24px;
}

.fade {
  animation: fade 1.5s;
}

@keyframes fade {
  from {
    opacity: .4;
  }

  to {
    opacity: 1;
  }
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: green;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
  justify-content: center;
}

.card {
  background: white;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

section h2 {
  text-align: center;
  margin-top: 40px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
}

.partner-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}

.partner-form input,
.partner-form textarea,
.partner-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.partner-form button {
  padding: 12px;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.partner-form button:hover {
  background: #005fa3;
}

.distance-box {
  text-align: center;
  padding: 40px;
  background: white;
}

.distance-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.distance-box input {
  padding: 12px;
  width: 220px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
}

.distance-box button {
  padding: 12px 18px;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.weather {
  text-align: center;
  padding: 40px;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

section p {
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
  text-align: center;
}

.card .btn {
  display: inline-block;
  margin-top: 15px;
}

.card {
  text-align: center;
}

.card .btn {
  display: inline-block;
  margin-top: 15px;
}