/* === Guide Container === */

 /* container layer above everything */
 .banner-3-content { 
  position: relative; 
  z-index: 100; 
}

/* hero text */
#hero-h1 {
  position: absolute;
  top: 22%;
  left: 4%;
  font-size: clamp(32px, 6vw, 76px);
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.92); /* slightly transparent white */

  /* light transparent background with blur */
  background: rgba(0, 0, 0, 0.18); 
  padding: 0.4em 0.8em;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  /* subtle text shadow for contrast */
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);

  margin: 0;
  z-index: 101;
}

/* ensure on top */
.banner-3-content, #hero-h1 { 
  z-index: 9999 !important; 
}





 .highlight-green {
  color: #00cc66;
  font-weight: 500;
}



 .cta {
  background-color: #25D366;
  color: #fff;
  display: block;
  width: fit-content;
  margin: 40px auto 60px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-align: center;
}

.cta:hover {
  background-color: #1ebe5d;
  transform: scale(1.03);
  text-decoration: none;
}




.immiez-guide {
  max-width: 800px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  padding: 20px;
  background: #fffefc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.immiez-guide h2 {
  color: #d94700;
  margin-top: 30px;
}

.immiez-guide p {
  line-height: 1.6;
  font-size: 16px;
  color: #333;
}

.immiez-guide img {
  max-width: 400px;
  max-height: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
}

.immiez-guide .cta {
  background: #25D366;
  color: white;
  display: inline-block;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  border-radius: 6px;
}

.immiez-guide .step {
  margin-bottom: 40px;
}


/* === Link Styling === */


/* === Guide Links Section === */
.guide-links a {
  color: #2563eb;
  text-decoration: none;
  padding-left: 8px;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.guide-links a:hover {
  background-color: #eef3ff;
  border-left: 4px solid #1a56d1;
  padding-left: 8px;
}

.guide-links a.active {
  font-weight: bold;
  background-color: #eef3ff;
  border-left: 4px solid #1a56d1;
  padding-left: 8px;
}

li + li:nth-child(4n) {
  margin-bottom: 10px;
}


/* === Guide Illustration === */
img.guide-illustration {
  max-width: 400px;
  max-height: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
}


/* === Footer === */
.footer {
  background-color: #fff0e6;
  padding: 40px 20px;
  text-align: center;
}

.footer img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.footer p {
  font-size: 1.2rem;
  color: #555;
  max-width: 500px;
  margin: 0 auto;
}

.footer a {
  color: #25D366;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
 /* Universal link styling */
 /* === UNIVERSAL LINK STYLE === */
a {
  color: #00c851;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 2px 4px;
  border-radius: 4px;
}

a:hover {
  color: #009c3b;
  background-color: #e6f9ee;
  box-shadow: 0 2px 4px rgba(0, 200, 100, 0.1);
  text-decoration: none;
}

/* === GUIDE-LINK STYLING === */
.guide-links a {
  display: inline-block;
  padding: 6px 8px;
  color: #00c851;
  border-radius: 6px;
}

.guide-links a:hover,
.guide-links a.active {
  background-color: #e6f9ee;
  border-left: 4px solid #00c851;
  font-weight: bold;
}

/* === HOMEPAGE TEXT LINK STYLING (OPTIONAL) === */
a {
  color: #25D366;
  text-decoration: none;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
  display: inline-block;
}

a:hover {
  background-color: rgba(37, 211, 102, 0.12); /* soft green shadow */
  transform: translateY(1px); /* gives a pressed feel */
  color: #1ebe5d;
}


.brand-highlight {
  color: #00c851; /* your brand green */
  font-weight: 700;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

