/* ====== E-VISA BANNER SECTION ====== */
.evisa-banner {
  background: #f9fafe;
  padding: 2.5rem 1rem;
  margin: 2rem 0;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.evisa-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.evisa-content {
  flex: 1;
  min-width: 300px;
}

.evisa-content h2 {
  font-size: 1.9rem;
  color: #1e3a8a;
  margin-bottom: 0.8rem;
}

.evisa-content p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.3rem;
}

.evisa-btn {
  display: inline-block;
  background: #1b74e4;
  color: #fff;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.evisa-btn:hover {
  background: #0f5bd4;
}

.evisa-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.evisa-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
  .evisa-banner .container {
    flex-direction: column;
    text-align: center;
  }
  .evisa-image {
    margin-top: 1rem;
  }
}