body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  color: #222;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  border-bottom: 1px solid #e5e5e5;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo h2 { margin: 0; }
.logo small { color: #777; }

/* HERO */
.visa-hero {
  height: 40vh;
  background: #333;
  position: relative;
}
.visa-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* CONTENT */
.visa-section {
  padding: 70px 0;
}
.visa-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}

.visa-content h2 {
  margin-bottom: 15px;
}
.visa-content h3 {
  margin-top: 30px;
}
.visa-content ul {
  margin-left: 20px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.price-table th,
.price-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}
.price-table th {
  background: #f5f5f5;
}

/* SIDEBAR */
.visa-sidebar {
  background: #f5f5f5;
  padding: 25px;
}
.visa-sidebar a {
  display: block;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 12px;
  margin-top: 15px;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .visa-layout { grid-template-columns: 1fr; }
}
