body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f6f9;
  color: #333;
}
header {
  background: #0d1b2a;
  color: white;
  padding: 20px;
  text-align: center;
}
header img {
  max-width: 140px;
}
nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}
.language-toggle {
  margin-top: 10px;
}
.language-toggle button {
  margin: 0 5px;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}
h2 {
  color: #01080f;
}
ul {
  list-style: none;
  padding: 0;
}
ul li {
  background: white;
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.video-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}
video {
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
}
footer {
  background: #0d1b2a;
  color: white;
  text-align: center;
  padding: 20px;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.testimonial {
  background: #1b263b;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.brochures a {
  display: block;
  background: #1b263b;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
}
.brochures a:hover {
  background: #415a77;
}
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}
form button {
  background: #1b263b;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.image-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.card-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: left;
}


