body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #19275e;
}
header {
  background-color: #19275e;
  color: white;
  text-align: center;
  padding: 20px 10px;
  position: relative;
}
header img {
  width: 120px;
  margin-bottom: 10px;
}
.language-switch {
  margin-top: 10px;
}
.language-switch a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  font-weight: bold;
}
.language-switch a:hover {
  text-decoration: underline;
}
nav {
  background-color: #e33316;
  padding: 10px 0;
  text-align: center;
}
nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}
h1,
h2 {
  color: #19275e;
}
header h1 {
  color: #52b3dc;
}
header h2 {
  color: #e33316;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.service {
  background-color: #52b3dc;
  padding: 20px;
  border-radius: 8px;
  color: white;
}
#about a {
  color: #19275e;
}
.service h3 {
  color: #19275e;
  margin-top: 0;
}
footer {
  background-color: #19275e;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}
a.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #e33316;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}
/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
