html, body {
  background-color: #F5F5F5;
  margin: 0;
  padding: 0;
  width: 100vw; /* Ensure it fully spans the viewport */
  height: 100vh;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Footer Styling */
.crm-footer {
  margin-top: 100px;
  background: var(--gs-header-bg);
  color: var(--gs-mist);
  padding: 20px 0;
}

.footer-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  color: var(--gs-mist);
  padding: 15px;
  bottom: 0;
  left: 0;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 2px solid var(--gs-mist);
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: var(--gs-mist);
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid var(--gs-mist);
  padding-top: 10px;
  font-size: 14px;
}

.question-btn {
  transition: ease 0.5s;
  background-color: var(--gs-navy);
  color: var(--gs-coral);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 16px;
}

.question-btn:hover {
  transition: ease 0.5s;
  background-color: var(--gs-coral);
  color: var(--gs-white);
}

.profile-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

/*  Make the “×” bigger, bolder, and more obvious:  */
.close-btn {
  transition: 0.25s ease;
  background-color: var(--gs-coral);
  border-radius: 15px;
  position: absolute;
  padding: 5px 10px;
  top: 12px;           /* push it down slightly */
  right: 12px;         /* push it in from the edge */
  font-size: 1.6rem;   /* enlarge from default */
  font-weight: bold;
  color: #1d1d1d;         /* a dark gray by default */
  cursor: pointer;
  user-select: none;   /* prevent accidental text-selection */
  transition: color 0.15s ease;
  z-index: 10;         /* ensure it sits on top of content */
}

/* Hover/focus state to make it pop: */
.close-btn:hover,
.close-btn:focus {
  transition: 0.25s ease;
  color: #000000; 
  border-radius: 0px;
  background-color: var(--gs-coral);    
}

h1 {
  text-align: center;
  font-family: 'dubai';
  font-weight: bold;
  font-size: 60px;
  color: #2D2D2D;
}

h2 {
  text-align: center;
  font-style: initial;
  font-family: 'dubai';
  font-weight: 600;
  font-size: 40px;
  color: #2D2D2D;
}

h3 {
  text-align: center;
  font-family: "dubai";
  font-style: oblique;
  font-weight: 700;
  font-size: 35px;
  color: var(--gs-white);
}

h5 {
  font-family: "dubai";
  font-style: initial;
  font-weight: 500;
  font-size: 17px;
}