html, body {
  overflow-x: hidden;  /* horizontal scroll বন্ধ */
  overflow-y: auto;    /* vertical scroll সবসময় চালু */
  height: auto;        /* height fix না, auto */
}

/* ===== Fixed header + hero space ===== */
:root { --strength-top-offset: 140px; }
@media (max-width: 768px){
  :root { --strength-top-offset: 160px; }
}

/* ===== Page background + base font ===== */
.strength-page {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: #ffffff; /* teal */
  color: #FFA500; /* brand orange */
}

/* ===== HERO ===== */
.strength-page .hero {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  background: transparent;
}
.strength-page .hero img {
  max-width: calc(100% - 120px);
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 992px) {
  .strength-page .hero img { max-width: calc(100% - 60px); }
}
@media (max-width: 600px) {
  .strength-page .hero img { max-width: 100%; }
}

/* ===== Main container (centered like step1) ===== */
.strength-page .main-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 16px 44px;
}

/* ===== Big teal section ===== */
.strength-page .main-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 50px rgba(255, 165, 0, 0.9);
}

/* Headings & text */
.section-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #FFA500;
  margin: 16px 0 20px 0;
}
.section-text {
  font-size: 16px;
  line-height: 1.7;
  color: #FFA500;
  margin: 0 0 20px 0;
}

/* ===== Strengths Grid ===== */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.strength-box {
  background: #ffffff; /* darker teal for contrast */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(255, 165, 0, 0.6);
  color: #FFA500;
}

.strength-box .box-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFA500;
}

.strength-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #FFA500;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .strength-grid {
    grid-template-columns: 1fr;
  }
}
