/* ============================
   GLOBAL STYLES
   ============================ */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar img {
  height: 45px;
  margin-right: 15px;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 14px 16px;
  transition: background 0.3s, color 0.3s;
  font-weight: 500;
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* === Language Switch Button === */
.language-switch {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.language-switch:hover {
  background-color: #0056b3;
}

/* ============================
   MAIN CONTENT
   ============================ */
.content {
  flex: 1;
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content h1 {
  text-align: center;
  color: #444;
  margin-bottom: 20px;
}

.content p,
.content li {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.content ul {
  padding-left: 20px;
}

.content a {
  color: #007bff;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: auto;
  font-size: 14px;
}

/* Footer links — stay white, neat */
.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

.footer a:hover {
  text-decoration: underline;
  color: #ddd;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .navbar a {
    display: block;
    padding: 10px;
  }

  .content {
    margin: 20px;
    padding: 15px;
  }

  iframe {
    width: 100% !important;
    height: auto !important;
  }
}