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

body {
  background: #081421;
  color: white;
}

/* HERO */

.hero-uk {
  text-align: center;
  padding: 120px 10%;
  background: linear-gradient(120deg, #001f3f, #003a8c);
}

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

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

/* IMAGE SECTION */

.country-image-section {

  padding: 70px 20px;

  background: white;

}

.country-image-container {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 50px;

  max-width: 1150px;

  margin: auto;

  flex-wrap: wrap;

}

.country-image img {

  width: 480px;

  max-width: 100%;

  border-radius: 14px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

}

.country-image-content {

  max-width: 520px;

}

.country-image-content h2 {

  color: #003a8c;

  margin-bottom: 15px;

}

.country-image-content p {

  color: #374151;

  line-height: 1.7;

}

/* INTRO */

.uk-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(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

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

/* SUPPORT */

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

.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, #001f54, #003a8c);
}

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

/* FOOTER */

.footer {
  background: #01070f;
  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;
}
