* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: #0a0f1c;
  color: white;
}

/* HERO */

.hero-us {
  text-align: center;
  padding: 120px 10%;
  background: linear-gradient(120deg, #001d3d, #b22234);
}

.hero-us h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-us p {
  max-width: 650px;
  margin: auto;
  opacity: 0.9;
}

/* INTRO */

.us-intro {
  padding: 70px 20%;
  text-align: center;
  font-size: 17px;
  opacity: 0.9;
}

/* VISA TYPES */

.visa-types {
  padding: 80px 10%;
  text-align: center;
}

.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.visa-card {
  background: #111a2e;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.visa-card:hover {
  transform: translateY(-10px);
  background: #1b2a48;
}

/* SUPPORT */

.support-section {
  padding: 80px 15%;
  text-align: center;
  background: #020611;
}

.support-section p {
  max-width: 700px;
  margin: auto;
  margin-top: 15px;
  opacity: 0.85;
}

/* CTA */

.cta {
  padding: 80px 10%;
  text-align: center;
  background: linear-gradient(45deg, #b22234, #ff2a2a);
}

.cta a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: white;
  color: #b22234;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

/* FOOTER */

.footer {
  background: #01040b;
  padding: 50px 10%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.footer-links ul {
  list-style: none;
  margin: 10px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-map iframe {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  opacity: 0.7;
}

.rights {
  margin-top: 10px;
}
