/* ---------------------- ROOT VARIABLES ---------------------- */
:root {
  --DHAGreen: #016635;
  --DHAOrange: #ADADAD;
  --DHALightOrange: #ADADAD;
  --DHATextGray: #949494;
  --DHATextGrayDark: #5a5a5a;
  --DHAWhite: #ffffff;
  --DHABackGroundLightGray: #f4f4f4;
}

/* ---------------------- FONT ---------------------- */
@font-face {
  font-family: 'Poppins';
  src: url('./assets/Poppins/Poppins-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins';
  src: url('./assets/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

/* ---------------------- BASE ---------------------- */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--DHABackGroundLightGray);
}

/* ---------------------- LAYOUT ---------------------- */
.landing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 16px;
}

.dha-mobile-container-no-header {
  width: 100%;
  max-width: 550px;
  border: 1.5px solid #E2E2E2;
  border-radius: 16px;
  background-color: white;
  padding: 16px 16px 30px 16px;
}

/* ---------------------- BACKGROUND ---------------------- */
.dha-background-primary {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F9FAFB;
  z-index: -1;
}

/* ---------------------- HEADER ---------------------- */
.dha-logo-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dha-logo-holder img {
  max-width: 100%;
  height: auto;
}

/* ---------------------- TEXT ---------------------- */
.container-fluid-title {
  text-align: center;
  width: 100%;
}

.dha-page-title-smaller {
  text-align: center;
  font-weight: bold;
  font-size: 42px;
  margin-top: 20px;
  display: block;
  line-height: 1.2;
}

.dha-secondary-description-text-gray {
  text-align: center;
  font-size: 14px;
  color: #232323;
  margin: 16px 0;
  line-height: 1.5;
}

.dha-secondary-description-text-gray b {
  font-weight: bold;
}

.cta-text {
  text-align: center;
  font-size: 20px;
  color: #232323;
}

.medium-font {
  text-align: center;
  font-size: 14px;
  color: #555;
}

.medium-font {
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* ---------------------- BUTTON ---------------------- */
.dha-primary-button-orange {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  color: white;
  background-color: rgb(60, 119, 79);
  cursor: pointer;
  margin-top: 20px;
}

.dha-primary-button-orange:hover {
  opacity: 0.9;
}

/* ---------------------- SIMPLE UTILITIES ---------------------- */
.container-fluid {
  width: 100%;
}

.mt-4 { margin-top: 24px; }
.mt-3 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 24px; }

.w-100 { width: 100%; }
.text-center { text-align: center; }