* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
  color: #111;
}

/* HEADER */
.header {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

/* SEARCH */
.search-section {
  display: flex;
  gap: 10px;
  padding: 20px;
  justify-content: center;
}

.search-section input {
  padding: 10px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.search-section button {
  padding: 10px 20px;
  background: #111;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.search-section button:hover {
  background: #333;
}

/* MAP */
.map {
  background-image: url('/clit/images/360_F_449736488_IAGo58o7DloC8Os5S5v9vppX3BIxzK4S.jpg');
  height: 250px;
  margin: 20px;
  background: #ddd;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
}

/* PROVIDERS */
.providers {
  padding: 20px;
  display: grid;
  gap: 15px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-3px);
}

.card button {
  margin-top: 10px;
  padding: 8px 15px;
  background: #111;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.card button:hover {
  background: #333;
}