body {
    font-family: "Roboto", sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #e9f5ff, #ffffff);
  text-align: center;
}
a{
  text-decoration: none;
}
h1 {
  color: #2EA5B6;
  margin-top: 20px;
}

.controls {
  margin: 20px 0px;
  height: 200px;
  margin-top: 200px;
}

input, select {
  padding: 12px;
  margin: 5px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

button {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: #2EA5B6;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #2EA5B6;
}

#rezultati {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
  text-align: left;
}

.tag {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 10px;
  background: #e6f2ff;
  color: #2EA5B6;
  border-radius: 20px;
  font-size: 12px;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #2EA5B6;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
}
@media screen and (max-width:1920px) {
  .foter-up{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .foter-down{
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 100%;
  }
  .healthcare{
    display: none !important;
  }
  .information{
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
  }
  .menu2{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
  }
 .foter-copyright{
  display: none !important;
 }
 .controls{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
 }
 #rezultati{
  width: 80%;
  margin: auto;
  height: auto;
 }
}