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

body {
  background: #071a2c;
  color: white;
}

/* HERO */

.hero-au {
  text-align: center;
  padding: 120px 10%;
  background: linear-gradient(120deg, #03203a, #004f7a);
}

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

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

/* ===================================================== */
/* IMAGE SECTION */
/* ===================================================== */

.country-image-section {
  padding: 80px 20px;

  background: #ffffff;
}

.country-image-container {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 60px;

  max-width: 1200px;

  margin: auto;

  flex-wrap: wrap;
}

.country-image img {
  width: 520px;

  max-width: 100%;

  border-radius: 16px;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);

  transition: 0.3s;
}

/* Image hover */

.country-image img:hover {
  transform: scale(1.03);
}

.country-image-content {
  max-width: 540px;
}

.country-image-content h2 {
  color: #0a2a66;

  font-size: 30px;

  margin-bottom: 18px;

  font-weight: 700;
}

.country-image-content p {
  color: #374151;

  line-height: 1.8;

  font-size: 16px;

  margin-bottom: 14px;
}

/* INTRO */

.visa-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: #0a2c45;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

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

/* PROCESS */

.process-section {
  padding: 80px 10%;
  background: #03121f;
  text-align: center;
}

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

.step {
  background: #0a2c45;
  padding: 25px;
  border-radius: 10px;
}

/* CTA */

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

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

/* FOOTER */

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