body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

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


logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container img {
  width: 80px;
  height: auto;
}

select, input[type="text"] {
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
  width: 80%;
  max-width: 400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  border: none;
}



{
  padding: 20px;
}

#countriesList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.country {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.country img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 4px;
}

.country button {
  margin-top: 10px;
  padding: 8px 12px;
  font-size: 14px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.country button:hover {
  background-color: #2980b9;
}

.social-footer {
  background-color: #222;
  padding: 15px 0;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #444;
  padding: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a img:hover {
  background-color: #666;
  transform: scale(1.2);
}
 <!-- End social-footer Section -->