
body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url('visa-bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

.container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.slogan {
  font-size: 1.7em;
  margin-bottom: 30px;
  color: #333;
}

.language-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.lang-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.1em;
  text-decoration: none;
  color: white;
  background-color: #0B0C28;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.lang-btn:hover {
  background-color: #00B5FF;
}

.footer {
  font-size: 0.9em;
  color: #666;
  margin-top: 20px;
}
