body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4fefe;
  color: #333;
}

/* HEADER */
header {
  background: #008080;
  color: white;
  padding: 20px;
  text-align: center;
}

.logo {
  width: 60px;
  margin-bottom: 10px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

nav a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
}

nav a:hover {
  background: rgba(255,255,255,0.2);
}

.lang-toggle {
  margin-top: 12px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* CONTENT */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
  padding: 20px;
}

.service, .page-content {
  background: white;
  padding: 32px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-img, .page-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: #008080;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

.cta:hover {
  background: #006666;
}

/* FORM */
.form-row {
  margin-bottom: 15px;
  text-align: left;
}

footer {
  background: #004c4c;
  color: white;
  text-align: center;
  padding: 18px;
  margin-top: 40px;
}
