/* css styles */
/* Visa box styling */
.visa-container {
  font-family: 'Segoe UI', Arial, sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.visa-box {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
  border-left: 5px solid #1e90ff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.visa-title {
  color: #1e90ff;
  margin-top: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e6f2ff;
  font-size: 1.3em;
}

.visa-list {
  padding-left: 20px;
  line-height: 1.6;
}

.visa-list li {
  margin-bottom: 10px;
}

.btn-container {
  text-align: center;
  margin-top: 30px;
}

.visa-btn {
  display: inline-block;
  background-color: #1e90ff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.visa-btn:hover {
  background-color: #0066cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Container for 3 horizontal boxes */
.passport-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px auto;
  max-width: 1000px;
  flex-wrap: wrap;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Individual passport box */
.passport-box {
  background-color: #f9f9ff;
  border-left: 5px solid #4682b4;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 30%;
  min-width: 280px;
  box-sizing: border-box;
  flex: 1;
}

/* Title styling */
.passport-title {
  color: #1e90ff;
  font-size: 1.2em;
  margin-top: 0;
  border-bottom: 2px solid #e0eaff;
  padding-bottom: 8px;
}

/* Bullet list styling */
.passport-info {
  padding-left: 20px;
  line-height: 1.6;
  margin-top: 10px;
}

.passport-info li {
  margin-bottom: 8px;
}


