body {
  font-family: Tahoma, Arial, sans-serif;
  direction: rtl;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

header {
  background: #0077b6;
  color: white;
  padding: 20px;
  text-align: center;
}

header .logo {
  width: 80px;
  border-radius: 50%;
}

#chalets {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.chalet {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.chalet:hover {
  transform: scale(1.05);
}

.chalet img {
  width: 100%;
  border-radius: 8px;
}

.price {
  color: #0077b6;
  font-weight: bold;
}

footer {
  background: #023e8a;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
}
footer a {
  color: #ffdd00;
  text-decoration: none;
}