/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  background: #f9f9f9;
}

/* Language selector */
#language-selector {
  text-align: center;
  margin: 20px 0;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 20px;
  background: #00aaff;
  color: #fff;
}

.hero h1 { margin: 0; font-size: 2rem; }
.hero p { margin: 10px 0; font-size: 1.1rem; }

/* Images */
.hero-image-container img,
#services img {
  width: 100%;
  max-width: 300px;   /* smaller images */
  height: auto;
  border-radius: 10px;
  margin: 10px;
}

/* Buttons */
.button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.button {
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: 0.2s;
}

/* Button colors */
.black { background: #000; color: #fff; }
.yellow { background: #FFD700; color: #000; }
.green { background: #25D366; color: #000; }

/* Button hover effect */
.button:hover { opacity: 0.8; }

/* Services Section */
#services {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

#services h2 { color: #00aaff; margin-top: 20px; }
#services p { margin: 10px 0; }

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #fff;
  margin-top: 40px;
}