
.faq{
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.faq-item{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.faq-item summary{
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: #1f2230;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item summary::after{
  content: "+";
  font-weight: 900;
  color: var(--blue);
  flex: 0 0 auto;
}

.faq-item[open] summary::after{
  content: "–";
}

.faq-answer{
  padding-top: 12px;
}

.faq-answer p{
  margin: 0 0 10px;
  color: rgba(64,65,79,0.85);
  font-weight: 600;
}

.faq-answer p:last-child{
  margin-bottom: 0;
}
.faq-answer p{ max-width: none; }

#faqs{
  background:
    linear-gradient(
      rgba(6,71,137,0.75),
      rgba(6,71,137,0.75)
    ),
    url("images-guests/faq-bg.jpg");
  background-size: cover;
  background-position: center;
  
}

#faqs{
  background-attachment: fixed;
}


#faqs h2{
  color: #ffffff;
}


#faqs .lead{
  color: #C59F78 !important;
}

#faqs p{
  color: #1f2230 !important;
  line-height: 1.6;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
  max-width: none;}


/* ===== Section backgrounds and dividers ===== */
:root{
  --bg-white: #ffffff;
  --bg-cool: #F0F6F9;                  /* light cool grey */
  --bg-sky: rgba(189,212,231,0.28);    /* your sky tint */
  --bg-sand: rgba(213,210,195,0.35);   /* your sand tint */
  --divider: rgba(15, 23, 42, 0.08);
}

/* generic section spacing */
.section{
  padding: 96px 0;
}

.section--grey{ background: var(--bg-sand); }
.section--sky{ background: var(--bg-sky); }
.section--white{ background: var(--bg-white); }

.section--divider-top{ border-top: 1px solid var(--divider); }
.section--divider-bottom{ border-bottom: 1px solid var(--divider); }

.hero{
  position: relative;
  padding: 140px 20px;
  max-height: 45vh;
  background:
    linear-gradient(
      to bottom,
      rgba(6,71,137,1) 0%,   /* VERY dark top */
      rgba(6,71,137,0.95) 20%,
      rgba(6,71,137,0.85) 50%,
      rgba(6,71,137,0.75) 75%,
      rgba(6,71,137,0.65) 100%  /* fades out */
    ),
    url("landlords/hero2.jpg");

  background-size: cover;
  background-position: center;
}
.hero h1{
  color: #fff;
  font-size: 48px;
  letter-spacing: -0.2px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.hero p,
.hero .lead{
  color: #C59F78 !important;
  line-height: 1.6;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
  max-width: none;
}

.what-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}


.quote{
  margin: 24px 0;
  padding-left: 18px;
  border-left: 3px solid var(--camel);
  font-style: italic;
  max-width: none
}



#process-and-onboarding{
  background:
    linear-gradient(
      rgba(6,71,137,0.75),
      rgba(6,71,137,0.75)
    ),
    url("landlords/how-it-works-bg.jpg");
  background-size: cover;
  background-position: center;
}

#process-and-onboarding h2{
  color: #fff;
  font-size: 36px;
  letter-spacing: -0.2px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.45);}

.hp-field {
  display: none !important;
}
