/* ===== Global Reset ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== Body Styling ===== */
body {
  font-family: 'Poppins', sans-serif;
  background: url('/fileadmin/Buyingct_site/Content/Investors/Rentalrates/Rentalrates_background.svg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Header Styling ===== */
header {
  background: transparent;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
}

.header-left img {
  height: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
  position: relative;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #5a85c2;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  top: 100%;
  left: 0;
}

.dropdown-content li a {
  padding: 10px;
  display: block;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== Footer ===== */
footer {
  background: none;
  text-align: center;
  padding: 0.5rem 0;
}

footer p {
  margin: 0;
  font-size: 0.875rem;
}
/* ===== Rent Map Intro Styles ===== */
#rent-map-intro .intro-box {
  max-width: 980px;
  margin: 16px auto 24px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.45;
  color: #1f2937;
}

/* ===== Text Utilities ===== */
.text-bold { font-weight: 700; }
.text-light { font-weight: 300; }

.text-small { font-size: 0.9rem; }   /* ~14px */
.text-medium { font-size: 1rem; }   /* ~16px */
.text-large { font-size: 1.2rem; }  /* ~19px */
.text-xlarge { font-size: 1.4rem; } /* ~22px */

.text-gray { color: #4b5563; }       /* muted gray */
.text-accent { color: #8e24aa; }     /* purple accent */

/* Centering helper */
.text-center { text-align: center; }

/* Make list bullets bold (only for lists you choose) */
.bullets-bold > li { font-weight: 700; }

#rent-map-intro .subtitle {
  font-size: 1.4rem; 
  color: #2563eb;  /* or any hex you like */
 font-weight: 700;
 text-align: center;
}

.subtitle-items {
  color: #2563eb;
  text-align: center;
  font-weight: 700;          /* keeps items bold */
  line-height: 1.4;
}

.subtitle-items span + span::before {
  content: " · ";            /* separator dot */
  margin: 0 6px;
  font-weight: 400;          /* lighter dot */
}

