/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  background: #1B4332;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1B4332 0%, #0d2118 100%);
  opacity: 0.85;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.page-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ===== SECTIONS ===== */
.about-section {
  padding: 60px 0 40px;
  background: #f8f8f8;
}

.floors-section {
  padding: 40px 0 80px;
  background: #f8f8f8;
}

/* ===== CARDS ===== */
.about-card,
.floors-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(27,67,50,0.07);
  padding: 40px 48px;
}

/* ===== HEADING ===== */
.about-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B4332;
  margin: 0 0 12px;
}

.about-underline {
  width: 48px;
  height: 4px;
  background: #FFCA29;
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ===== BODY TEXT ===== */
.about-card p,
.floors-card p {
  font-size: 0.97rem;
  color: #484848;
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-card p:last-child,
.floors-card p:last-child {
  margin-bottom: 0;
}

/* ===== INTRO LINE ===== */
.floors-intro {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: #1B4332 !important;
}

/* ===== PULL QUOTE ===== */
.floors-quote {
  border-left: 4px solid #FFCA29;
  padding: 12px 20px;
  margin: 24px 0;
  background: #f8f8f8;
  border-radius: 0 6px 6px 0;
}

.floors-quote p {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: #1B4332 !important;
  margin: 0 !important;
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-card,
  .floors-card {
    padding: 28px 20px;
  }

  .about-heading {
    font-size: 1.4rem;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }
}
