/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e2f7e0; /* Light green background */
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #45a049;
}

/* Header Styles */
header {
  background-color: #fff;
  padding: 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.lang-button {
  font-size: 16px;
}

/* Main Content Styles */
main {
  padding: 40px 20px;
}

.intro h1 {
  text-align: center;
  font-size: 36px;
}

.intro p {
  text-align: center;
  font-size: 18px;
}

.listings {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 40px;
}

.listing {
  background-color: #fff;
  margin: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.listing img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.listing-info h3 {
  font-size: 20px;
  margin: 10px 0;
}

.listing-info p {
  font-size: 14px;
  color: #555;
}

/* Footer Styles */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  position: fixed;
  bottom: 0;
  width: 100%;
}
a.btn {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

a.btn:hover {
  background-color: #45a049;
}