@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap");

:root {
  --color-text: #000000;
  --color-primary: #166273;
  --color-background: #ffffff;
  --color-neutral-darkest: #000000;
  --color-white: #ffffff;
}

/* ------------------------ GLOBALS ------------------------ */

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  padding: 0;
  margin: 0;
}

/* ------------------------ CUSTOM SCROLLBAR ------------------------ */
body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: #eee;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}



h1 {
  font-family: "Raleway", sans-serif !important;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 110%;
  color: var(--color-primary);
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

a {
  font-family: "Raleway", sans-serif !important;
}

h2 {
  font-family: "Raleway", sans-serif !important;
}

h3 {
  font-family: "Raleway", sans-serif !important;
}

p {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #000000;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.container {
  max-width: 1800px;
  margin: 0px auto;
  padding: 0px 64px;
}

.section_container {
  padding: 112px 0px;
  gap: 80px;
  background: var(--color-background);
}

.row_container {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0px;
  gap: 64px;
}

.row_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;
}

.row_image_item {
  flex: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 16px;
}

.link {
  position: relative;
  display: inline-block;
  color: var(--color-text);
  /* or any brand color */
  text-decoration: none;
  /* font-weight: 500; */
  transition: color 0.3s ease;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.link:hover::after {
  transform: scaleX(1);
}

.link:hover {
  color: var(--color-primary);
  /* slightly darker on hover */
}

/* ----------------------------- NAVBAR --------------------------------- */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.navbar {
  max-width: 1800px;
  margin: 0px auto;
  height: 72px;
  padding: 0px 64px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.nav_logo {
  height: 35px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
}

.dropdown {
  position: relative;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: var(--color-white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  padding: 0 0;
  min-width: 150px;
  z-index: 10;
  list-style: none;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  color: var(--color-text);
}

.dropdown-menu li a:hover {
  background-color: #f2f2f2;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-align: center;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: max-content;
  white-space: nowrap;
}

.btn.outline {
  border: 1px solid var(--color-primary);
  color: var(--color-text);
  background-color: transparent;
}

.btn.outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);

}

.btn.filled {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  transition: all 0.3s ease-in-out;
}

.btn.filled:hover {
  opacity: 0.9;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  padding-top: 80px;
  /* overflow-y: auto;
  overflow-x: hidden; */
  display: flex;
  flex-direction: column;
}

.mobile-drawer-container {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  max-height: calc(100vh - 80px);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  display: block;
}

.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-menu li {
  padding: 10px 0;
  border-bottom: none;
}

.mobile-auth-buttons {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-auth-buttons .btn {
  width: calc(100% - 50px);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.overlay.active {
  display: block;
}


/* ================================================================================= */
/* =============================== HOME PAGE ======================================= */

/* -------------------------------------- HERO ------------------------------------ */
.hero {
  padding: 64px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.hero_headings {
  max-width: 768px;
  text-align: center;
  padding: 0 16px;
}

.video-wrapper {
  position: relative;
}

.volume-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  overflow: hidden;
  padding: 5px;
  background: var(--color-white);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
}

.volume-icon:hover {
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.5);
}


.bottom_margin_10 {
  margin-bottom: 10px;
}

.bottom_margin_20 {
  margin-bottom: 20px;
}

.hero_button {
  width: 100%;
  padding-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero_media {
  max-width: 100%;
  max-height: calc(100vh - 90px);
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 339 / 190;
}


.employers_hero_media {
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

/* -------------------------------- HOW IT WORKS -------------------------------- */

.how_it_works {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0px;
  gap: 80px;

  flex: none;
  order: 2;
  flex-grow: 0;
}

.how_it_works_heading {
  width: 768px;
  max-width: 100%;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: var(--color-text);
  flex: none;
  order: 0;
  flex-grow: 0;
}

.how_it_works_grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0px;
  gap: 48px;
  width: 100%;
}

.how_it_works_grid_item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 32px;
  background: var(--color-white);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  border-radius: 32px;
  min-height: max-content;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease;
  transform-origin: center;
}

.how_it_works_grid_item_image {
  width: 100%;
  padding-top: 58.666%;
  border-radius: 0px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  border-radius: 16px;

  background-size: 100% auto;
  background-position: center top;
}

.how_it_works_image_1 {
  background-image: url(../images/home/howItWorks/1.png);
}

.how_it_works_image_2 {
  background-image: url(../images/home/howItWorks/2.png);
}

.how_it_works_image_3 {
  background-image: url(../images/home/howItWorks/3.png);
}

.how_it_works_grid_item_details {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 10px;
  align-self: stretch;
  width: 100%;
}

.how_it_works_grid_item_details_heading {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: var(--color-text);
  /* min-height: 100px; */
}

.how_it_works_grid_item_details_para {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--color-text);
}

.how_it_works_grid_item_learn {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px;
  gap: 8px;
  flex: none;
  order: 1;
  align-self: stretch;

  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-primary);
  text-decoration: none;
}

.how_it_works_grid_item_icon {
  width: 24px;
  height: 24px;
  flex: none;
  order: 1;
  flex-grow: 0;
  transition: transform 0.3s ease;
}

.how_it_works_grid_item_learn:hover .how_it_works_grid_item_icon {
  transform: translateX(6px);
}

/* ------------------------------------ CHANGING BEHAVIOUR -------------------------------------- */

.changing_behaviour_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 112px 0px;
  gap: 80px;
  background: var(--color-background);
  flex: none;
  order: 3;
  flex-grow: 0;
}

.changing_behaviour_content_container {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0px;
  gap: 40px;
}

.changing_behaviour_image {
  flex: 1;
  background: url(../images/home/changing_behaviour.png);
  border-radius: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #bfd8e4;
}

.changing_behaviour_details {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 0px;
  gap: 32px;
}

.changing_behaviour_details_tag {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-primary);
  flex: 1;
  text-align: left;
}

.changing_behaviour_details_title {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: var(--color-text);
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.changing_behaviour_details_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-text);
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* -------------------------------------- PROVEN RESULTS ---------------------------------- */

.proven_results_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 112px 0px;
  gap: 80px;
  background: var(--color-background);
  flex: none;
  order: 3;
  flex-grow: 0;
}

.proven_results_content_container {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0px;
  gap: 40px;
}

.proven_results_image {
  flex: 1;
  background: url(../images/home/proven_results.png);
  border-radius: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #089da3;
}

.proven_results_details {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 0px;
  padding-bottom: 0px;
  gap: 32px;
}

.proven_results_details_tag {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-primary);
  flex: none;
  order: 0;
  flex-grow: 0;
}

.proven_results_details_title {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: var(--color-text);
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.proven_results_details_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-text);
  flex: 1
}

/* --------------------------------------- BETTER RECOVERY -------------------------------- */

.better_recovery {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0px;
  gap: 40px;
}

.better_recovery_heading {
  max-width: 1112;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: var(--color-text);
  flex: none;
}

.better_recovery_para {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  text-align: center;

  color: var(--color-text);

  flex: none;
}

.better_recovery_grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0px;
  gap: 48px;
  width: 100%;
  margin-top: 40px;
}

.better_recovery_grid_item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 32px;
  background: var(--color-white);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  min-height: max-content;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 30px;
}

.better_recovery_grid_item_image {
  width: 100%;
  padding-top: 58.666%;
  border-radius: 0px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  border-radius: 16px;

  background-size: 100% auto;
  background-position: center top;
}

.better_recovery_image_1 {
  background-image: url(../images/home/betterRecovery/1.png);
}

.better_recovery_image_2 {
  background-image: url(../images/home/betterRecovery/2.png);
}

.better_recovery_image_3 {
  background-image: url(../images/home/betterRecovery/3.png);
}

.better_recovery_grid_item_details {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 18px;
  align-self: stretch;
  width: 100%;
}

.better_recovery_grid_item_details_heading {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: var(--color-text);
}

.better_recovery_grid_item_details_para {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--color-text);
}

.better_recovery_grid_item_learn {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px;
  gap: 8px;
  flex: none;
  order: 1;
  align-self: stretch;

  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-primary);
  text-decoration: none;
}

.better_recovery_grid_item_icon {
  width: 24px;
  height: 24px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.stat_info_box {
  background-color: #f5f7fa;
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
  text-align: center;
}

.center_button {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------------------- BETTER OUTCOMES ---------------------------------- */

.outcome-section {
  background-color: #eaf8fb;
  text-align: center;
  padding: 60px 20px;
  font-family: "Raleway", sans-serif;
}

.outcome-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.stats-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.box {
  width: 280px;
  border-radius: 12px;
  border: 1px solid #dceaf2;
  background-color: #ffffff;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.box-title {
  font-weight: 700;
  font-size: 20px;
  padding: 16px;
  color: #fff;
}

.box-desc {
  padding: 20px;
  font-size: 16px;
  color: #222;
  background-color: #f9fcff;
}

.box.blue .box-title {
  background-color: #4a90e2;
}

.box.green .box-title {
  background-color: #a4e5a1;
  color: #073c07;
}

/* ----------------------------------------------- MOBICARE ------------------------------------------- */

.mobicore_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 112px 0px;
  gap: 80px;
  background: var(--color-background);
  flex: none;
  order: 3;
  flex-grow: 0;
}

.mobicore_content_container {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0px;
  gap: 40px;
}

.mobicore_image {
  flex: 1;
  background: url(../images/home/mobicare.png);
  border-radius: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #f7f3ee;
}

.mobicore_details {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 0px;
  padding-bottom: 0px;
  gap: 32px;
}

.mobicore_details_tag {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text);
  flex: 1;
  text-align: left;
}

.mobicore_details_title {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: var(--color-text);
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.mobicore_details_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-text);
  flex: 1;
  /* order: 1;
  align-self: stretch;
  flex-grow: 0; */
}

/* ------------------------------------------ LETS RETHINK RECOVERY ----------------------------- */

.rethink_recovery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 112px 0px;
  gap: 80px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/home/rethink_recovery.jpg);
  flex: none;
  order: 8;
  flex-grow: 0;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rethink_recovery_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;

  max-width: 1800px;
  margin: 0px auto;
  width: calc(100% - 128px);
  padding: 0px 64px;

  flex: none;
  order: 0;
  flex-grow: 0;
  text-align: left;
}

.rethink_recovery_content_heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: var(--color-white);
  flex: 1;
  text-align: left;
  align-self: stretch;
  flex-grow: 0;
}

.rethink_recovery_content_para {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-white);
  flex: 1;
  text-align: left;
  align-self: stretch;
  flex-grow: 0;
}

.rethink_recovery_btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 8px;
  background: var(--color-white);
  border-radius: 40px;
  flex: none;
  flex-grow: 0;

  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.rethink_recovery_btn:hover {
  opacity: 0.9;
}

/* ----------------------------- FOOTER ------------------------ */

.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 0px;
  gap: 80px;

  background: var(--color-background);
  flex: none;
  order: 9;
  flex-grow: 0;
}

.footer_top_container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 30px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.footer_top_container_one {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 25px;

  flex: 5;
}

.footer_logo {
  height: 35px;
  width: auto;
}

.footer_top_col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  flex: none;
  order: 1;
  flex-grow: 1;
}

.footer_top_col_heading {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text);
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.footer_top_col_details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  gap: 10px;

  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-text);
  flex: none;
  order: 0;
  flex-grow: 1;
}

.flex_top_container_two {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  text-align: left;
  flex: 1;
}

.no_decoration_text {
  text-decoration: none;
  color: var(--color-text);
  flex: 1;
  text-align: left;
  font-size: medium;
}

.subscribe_input_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 5px;
  height: max-content;
}

.subscribe_input_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;

  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.subscribe_input {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px;
  gap: 8px;

  max-height: 48px;

  border: 1px solid var(--color-primary);
  border-radius: 8px;

  flex: none;
  flex-grow: 1;
}

.subscribe_btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 8px;

  width: 119px;
  max-height: 42px;

  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 8px;

  flex: none;
  flex-grow: 0;

  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-white);
}

.subscribe_note {
  font-size: small;
  color: var(--color-text);
  margin: 0;
  flex: 1;
  text-align: left;
}

.footer_bottom_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0px;
  gap: 32px;
  border-top: 1px solid var(--color-text);
  padding-top: 15px;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.footer_bottom_links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px 0px;
  gap: 64px;

  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.footer_bottom_left {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 24px;

  flex: none;
}

.footer_bottom_left_links {
  color: var(--color-text);
}

.footer_bottom_right {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
}

.footer_bottom_right_icons {
  width: 24px;
  height: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* ============================================================================================= */
/* ======================================= MSK CARE PAGE ======================================= */

/* ------------------------------------- HERO ------------------------------------------- */

.msk_care_hero {
  width: 100%;
  height: max-content;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
}

.msk_care_hero_image {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: contain;
}

/* --------------------------------- EMPOWER FASTER -------------------------------------- */

.empower_faster {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 0px;
  gap: 80px;

  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.empower_faster_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  flex: 1;

  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  color: var(--color-primary);
}

.empower_faster_right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  padding-top: 15px;
  gap: 32px;
  flex: 1;

  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-text);
}

/* ---------------------------- PREVENT RECOVER PLATFORM --------------------------------- */

.prevent_recover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 112px 0px;
  gap: 80px;

  background: var(--color-primary);
  flex: 1;
}

.prevent_recover_container {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 64px;
}

.prevent_recover_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
}

.prevent_recover_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
}

.prevent_recover_heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: var(--color-white);
}

.prevent_recover_para {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-white);
  flex: 1;
  text-align: left;
}

.midLine {
  width: 0px;
  height: 264px;
  border: 1px solid var(--color-white);
  flex: none;
}

/* ---------------------------------- BETTER CARE ------------------------------ */

.better_care {
  background: var(--color-white);
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 112px 0px;
  gap: 40px;
}

.better_care_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;
  flex: 1;
  justify-content: space-between;
}

.better_care_right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 64px;
  flex: 2;
  padding-top: 40px;
}

.better_care_right_top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 48px;

  flex: 1;
  align-self: stretch;
}

.better_care_right_top_cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 10px;
  flex: 1;
}

.better_care_right_bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;

  flex: 1;
}

.better_care_icon {
  width: 55.98px;
  height: 56px;
}

.better_care_tag {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text);
}

.better_care_heading_one {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: var(--color-text);
  align-self: stretch;
}

.better_care_heading_two {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: var(--color-text);
}

.better_care_para {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-text);
}

/* ----------------------------- FLEXIBLE CARE -------------------------------- */

.flexible_care {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 112px 0px;
  gap: 80px;
  background: var(--color-white);
  flex: 1;
}

.flexible_care_container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0px;
  gap: 80px;
  flex: 1;
}

.flexible_care_container_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;
  flex: 1;
}

.flexible_care_container_right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 64px;
  flex: 1;
  padding-top: 40px;
}

.flexible_care_container_right_cell {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 40px;
  flex: 1;
}

.flexible_care_container_right_cell_one {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 66px;
}

.flexible_care_container_right_cell_two {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
}

.flexible_care_tag {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text);
}

.flexible_care_heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: var(--color-text);
}

.flexible_care_image {
  background: url(../images/msk_care/flexible_care.svg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0px 16px 0px 0px;
  width: 100%;
  height: 256px;
  border-radius: 16px;
}

.flexible_care_heading_two {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--color-text);
}

.flexible_care_para {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text);
}

.flexible_care_line {
  width: 100px;
  height: 0px;
  background: var(--color-text);
  border: 2px solid var(--color-text);
  transform: rotate(90deg);
}

.flexible_care_icon {
  width: 59.98px;
  height: 56px;
}

/* ---------------------- FAQS ---------------------------------- */

.faq-container {
  padding: 64px 0px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(227, 250, 255, 0.4) 100%);
}

.faq-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;
}

.accordion {
  width: 100%;
  margin-bottom: 20px;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.accordion-item label {
  position: relative;
  display: block;
  padding: 20px 0;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
}

.accordion-item label::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transition: transform 0.3s ease;
}

.accordion-item input:checked+label::after {
  transform: translateY(-50%) rotate(-135deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 0;
}

.accordion-item input:checked~.accordion-content {
  max-height: 500px;
  padding-bottom: 20px;
}

/* --------------------- TAKE FIRST STEP ------------------------------ */

.take_first_step {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/msk_care/take_first_step.webp);
  background-position: center bottom !important;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ================================================================================================= */
/* ======================================= MODERN MSK PAGE ========================================= */

/* -------------------- FAST FLEXIBLE AND BUILT TO FIT --------------------------- */

.fast_flexible_line {
  width: 100px;
  height: 0px;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  transform: rotate(90deg);
}

.partner_with_us {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/modern_msk/partner_with_us.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ========================================================================================= */
/* ==================================== EXTEND CARE PAGE =================================== */

/* ------------------------ PARTNER WITH US ---------------------- */

.extend_care_partner_with_us {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/extend_care/partner_with_us.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ========================================================================================= */
/* ==================================== ENGAGING MSK ======================================= */

/* ------------------------- REALTIME FEEDBACK --------------------- */

.engaging_msk_realtime_feedback {
  flex: 1;
  background: var(--color-primary);
  padding: 64px 0px;
}

.engaging_msk_realtime_feedback_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.engaging_msk_realtime_feedback_container_inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  padding: 0px;
  gap: 64px;
}

.engaging_msk_realtime_feedback_container_inner_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 64px;
}

.engaging_msk_realtime_feedback_container_inner_left_heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: var(--color-white);
}

.engaging_msk_realtime_feedback_container_inner_left_para {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-white);
}

.engaging_msk_realtime_feedback_container_inner_right {
  flex: 1;
  background: url(../images/engaging_msk/realtime_feedback.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 16px;
}

/* ------------------ PATH TO RECOVERY ------------------------------------- */

.engaging_msk_path_to_recovery {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/engaging_msk/path_to_recovery.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ========================================================================================================= */
/* ========================================= INTRODUCING MOBICORE PAGE ===================================== */

.what_is_mobicore {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
}

.what_is_mobicore_top {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 0px 0px 32px;
  gap: 16px;
  background: var(--color-white);
  border-left: 1px solid var(--color-primary);
  max-width: 600px;
}

.what_is_mobicore_top_heading {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: var(--color-text);
}

.what_is_mobicore_top_para {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text);
}

.mobicore_image_container {
  padding: 0px 64px;
  width: calc(100% - 128px)
}

.what_is_mobicore_bottom {
  height: 738px;
  width: 100%;
  background: url(../images/introducing_mobicore/tech_behine_recovery.svg), #fffef8;
  border-radius: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fffef8;
}

/* ----------------------------------- MOBICORE COACH ----------------------------------- */
.mobicore_coach {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 112px 0px;
  gap: 80px;
  background: var(--color-background);
}

.mobicore_coach_container {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0px;
  gap: 80px;
}

.mobicore_coach_container_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;
}

.mobicore_coach_container_left_cell_container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;
}

.mobicore_coach_container_left_cell_container_row {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 8px 0px;
  gap: 24px;
}

.mobicore_coach_container_left_cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
}

.mobicore_coach_container_left_cell_icon {
  width: 61.89px;
  height: 56px;
}

.mobicore_coach_container_left_cell_heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: var(--color-text);
}

.mobicore_coach_container_left_cell_para {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text);
}

.mobicore_coach_container_right {
  background: url(../images/introducing_mobicore/mobicore_coach.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #faf4e9;
  border-radius: 16px;
}

@media screen and (min-width: 1025px) {
  .mobicore_coach_container_right {
    flex: 1
  }
}

/* ------------------- BEHAVIORAL SCIENCE ------------------------ */

.behavioral_science_image {
  background: url(../images/introducing_mobicore/behaviour_happens.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff9ed;
}

.behavioral_science_heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: var(--color-text);
}

.behavioral_science_para {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--color-text);
}

.quote_text {
  font-size: 21px;
}

.behavioral_science_bullets_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0px;
  gap: 16px;
}

.behavioral_science_bullet {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 16px;
}

.behavioral_science_bullet_icon {
  width: 16px;
  height: 16px;
}

/* ------------------------------ UNLOCK YOUR HEALTH -------------------------------- */

.row_health_first {
  justify-content: center;
}

.row_health_image {
  background: url(../images/introducing_mobicore/row_health.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  aspect-ratio: 616 / 400;
}

/* =============================================================================================== */
/* ====================================== REIMAGINED PAGE ======================================== */

/* ---------------------------------- OUR APPROACH TO CARE ------------------------------------- */

.approach_to_care_image {
  background: url(../images/reimagined/approach_to_care.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fefaed;
  flex: 1;
}

/* --------------------------------- LEADERSHIP TEAM ---------------------------------- */

.row_items_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.leadership_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.leadership_image {
  width: 100%;
  height: auto;
  /* border-radius: 50%; */
  aspect-ratio: 1 / 1;
}

.rishi_image {
  background: url(../images/reimagined/Board/rishi.svg) center/cover no-repeat;
  max-width: 292px;
}

.bordner_image {
  background: url(../images/reimagined/Board/bordner.svg) center/cover no-repeat;
  max-width: 292px;
}

.sterling_image {
  background: url(../images/reimagined/Board/Sterling.svg) center/cover no-repeat;
  max-width: 292px;
}

.desai_image {
  background: url(../images/reimagined/Board/Desai.png) center/cover no-repeat;
  max-width: 292px;
}

.lupold_image {
  background: url(../images/reimagined/Board/Lupold.svg) center/cover no-repeat;
  max-width: 292px;
}

.glatt_image {
  background: url(../images/reimagined/Board/Glatt.svg) center/cover no-repeat;
  max-width: 292px;
}

.hoath_image {
  background: url(../images/reimagined/Board/Hoath.svg) center/cover no-repeat;
  max-width: 292px;
}

.leadership_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.leadership_name {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--color-text);
}

.leadership_details {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text);
}

.bio-container {
  position: relative;
}

.bio-text p {
  margin-top: 0;
  margin-bottom: 8px;
}

.expand-checkbox {
  display: none;
}

.collapsed-content {
  display: block;
}

.expanded-content {
  max-height: 0;
  overflow: hidden;
  display: inline-block;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.expand-checkbox:checked~.bio-text .collapsed-content {
  display: none;
}

.expand-checkbox:checked~.bio-text .expanded-content {
  max-height: 1000px;
  opacity: 1;
}

.expand-label {
  display: inline-block;
  cursor: pointer;
  color: var(--color-text);
  font-weight: 500;
  margin-top: -8px;
}

.see-more,
.see-less {
  display: inline-block;
}

.see-less {
  display: none;
}

.expand-checkbox:checked~.expand-label .see-more {
  display: none;
}

.expand-checkbox:checked~.expand-label .see-less {
  display: inline-block;
}

.footer_bottom_right {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer_bottom_right_icons {
  transition: opacity 0.2s;
}

.footer_bottom_right_icons:hover {
  opacity: 0.8;
}

/* ================================================================================= */
/* ============================= RECOVERY HUB PAGE ================================= */

/* ------------------------- EXPLORE ----------------------------- */
.explore_container {
  text-align: center;
}

.explore_heading {
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  text-align: center;
  color: var(--color-text);
}

.green_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color-primary);
}

.simple_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.resource_library_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 128px
}

.resource_library_container {
  flex: 1;
  padding-top: 0px;
}

.resource_library_row {
  flex: 1
}


/* ========================================================================================== */
/* ======================================= RECOVERY HUB PAGE ================================ */

.recovery_take_first_step {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/recovery_hub/take_first_step.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}


/* =================================================================================================== */
/* =========================================== CONNECT PAGE ========================================== */

.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.left-section {
  flex: 1;
  min-width: 300px;
}

.right-section {
  flex: 1;
  min-width: 300px;
}

.section-title {
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 20px;
}

.main-title {
  color: var(--color-primary);
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}

.description {
  color: var(--color-text);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-info {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.95rem;
  gap: 5px;
}

.contact-item i {
  margin-right: 10px;
  color: var(--color-primary);
}

/* Form Styles */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--color-primary);
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: calc(100% - 24px);
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.95rem;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▼";
  font-size: 0.7rem;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
}

select {
  width: 100% !important;
  appearance: none;
  padding-right: 30px;
  background-color: var(--color-white);
}

textarea {
  height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--color-text);
}

.submit-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #0e4e5c;
}



/* ========================================================================================= */
/* ================================= PRIVACY POLICY ======================================== */


.policy_container {
  max-width: 800px;
  margin: 0px auto;
  gap: 80px;
  background: var(--color-background);
  padding-top: 64px;
  padding-bottom: 112px;
}

.privacy_heading {
  font-size: 40px;
  text-align: center;
  line-height: 130%;
  font-weight: 600;
  color: var(--color-text);
}

.privacy_sub_heading {
  padding: 5px 0px;
  padding-top: 20px;
  font-size: 24px;
  line-height: 130%;
  font-weight: 600;
  color: var(--color-text);
}




/* ============================================================================= */
/* ========================== CAREERS PAGE ===================================== */

.careers-page {
  padding-bottom: 100px;
}

.careers-page h1 {
  margin-bottom: 24px;
}

.careers-page p {
  margin-bottom: 10px;
}

.careers-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 16px
}




/* ============================================================================ */
/* ========================== STUDIES AND WHITE PAPERS ======================== */


.studies-page {
  padding-bottom: 100px;
}

.study-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.study-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
  background-color: #f9f9f9;
}

.study-card h3 {
  margin-top: 0;
  color: var(--color-primary);
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.study-card p {
  margin-bottom: 16px;
}


/* ============================================================================= */
/* ================================== COMING SOON ============================== */


.coming-soon-page {
  max-width: 960px;
  margin: 100px auto;
  text-align: center;
}

.coming-soon-page h1 {
  margin-bottom: 24px;
}

.coming-soon-page p {
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  flex: 1;
  justify-content: center;
}



/* ======================================================================================== */
/* ================================ EXERCISE DEMO VIDEOS ================================== */


table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
}

th,
td {
  padding: 12px 15px;
  /* border: 1px solid #eee; */
  text-align: left;
}

th {
  background-color: var(--color-primary);
  cursor: pointer;
  position: relative;
  color: var(--color-white);
}

th:hover {
  background-color: #0e5160;
}

th.sorted-asc::after {
  content: ' ▲';
  position: absolute;
  right: 5px;
}

th.sorted-desc::after {
  content: ' ▼';
  position: absolute;
  right: 5px;
}

tr:nth-child(even) {
  background-color: #f7feff;
}

tr:hover {
  background-color: #e7f9fc;
}

.exercise-video-link {
  color: var(--color-primary);
  text-decoration: none;
}

.exercise-video-link:hover {
  text-decoration: underline;
}

.filters {
  margin-bottom: 20px;
  margin-top: 10px;
  padding: 15px;
  background-color: #edfcff;
  border-radius: 5px;
  display: flex;
  gap: 15px;
  /* align-items: center; */
  flex-direction: column;
  /* flex-wrap: wrap; */
}

.filters_row{
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.buttons_container{
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.filters label {
  font-weight: bold;
  margin-right: 5px;
  margin-bottom: 0px;
}

.filters select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 44px;
  /* Added rounded corners */
  font-size: 1rem;
  min-width: 100px;
  flex: 1
}

#no-results {
  text-align: center;
  padding: 20px;
  font-style: italic;
  color: #555;
  display: none;
  /* Hidden by default */
}


#loader {
  font-size: 1.2rem;
}

#pagination .btn {
  padding: 5px 10px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: white;
  border-radius: 4px;
}

#pagination .btn.filled {
  background-color: #166273;
  color: white;
}

/* @media (max-width: 600px){
  table{
    max-width: 80vw;
    overflow-x: auto;
  }
} */


/* ========================================================================================= */
/* =============================== Responsive adjustments ================================== */

/* PIXELS 1215px */
@media (max-width: 1215px) {

  .navbar,
  .rethink_recovery_content {
    width: calc(100% - 64px);
    padding-inline: 32px;
  }

  .container {
    padding: 0px 32px;
  }

  .mobicore_image_container {
    padding: 0px 32px;
    width: calc(100% - 64px)
  }

  .nav-links {
    justify-content: space-between;
    padding-inline: 20px;
    max-width: 100%;
  }
}

/* PIXELS 1180px */
@media (max-width: 1180px) {
  nav {
    width: 100%;
    padding-inline: 20px;
  }

  .nav-links {
    gap: unset;
    width: 100%;
    padding-inline: 0px;
  }

  .footer_top_container {
    flex-direction: column;
  }

  .footer_top_container_one,
  .flex_top_container_two,
  .subscribe_input_container {
    width: 100%;
  }

  .subscribe_input_container {
    max-width: 500px;
  }
}

/* PIXELS 1024px */
@media (max-width: 1024px) {
  nav {
    width: 100%;
    padding-inline: 20px;
  }

  .nav-links {
    gap: unset;
    width: 100%;
    padding-inline: 0px;
  }

  .navbar {
    width: calc(100% - 64px);
  }

  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }




  .how_it_works_grid {
    flex-direction: column;
  }

  .footer_bottom_links {
    gap: 10px;
    flex-direction: column;
  }

  .mobicore_coach_container {
    flex-direction: column;
    gap: 48px;
  }

  .mobicore_coach_container_right {
    width: 100%;
    background-size: contain;
    aspect-ratio: 616 / 717;
  }

  .mobicore_coach_container_left_cell_container_row {
    flex-direction: column;
    gap: 32px;
  }


  .fast_flexible_line {
    display: none;
  }

  .flexible_care_line {
    display: none;
  }

  .flexible_care_container {
    flex-direction: column;
    gap: 60px;
  }

  .flexible_care_container_right_cell {
    gap: 20px;
  }

  .flexible_care_container_right_cell_one {
    gap: 20px;
  }

  .flexible_care_heading {
    font-size: 40px;
  }




  .better_care {
    flex-direction: column;
    padding: 80px 0px;
    gap: 60px;
  }

  .better_care_left,
  .better_care_right {
    width: 100%;
    gap: 32px;
  }

  .better_care_right {
    padding-top: 0px;
  }

  .better_care_heading_one {
    font-size: 36px;
  }

  .better_care_heading_two {
    font-size: 26px;
  }

  .better_care_para {
    font-size: 16px;
  }

  .better_care_right_top {
    flex-direction: column;
    gap: 32px;
  }





  .prevent_recover_container {
    gap: 48px;
  }

  .prevent_recover_heading {
    font-size: 28px;
  }

  .prevent_recover_para {
    font-size: 15px;
  }

  .midLine {
    height: 200px;
  }
}

/* PIXELS 768px */
@media (max-width: 768px) {
  .container {
    padding: 0px 24px;
  }

  .mobicore_image_container {
    padding: 0px 24px;
    width: calc(100% - 48px)
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-container,
  .changing_behaviour_content_container,
  .proven_results_content_container,
  .better_recovery_grid,
  .mobicore_content_container,
  .footer_top_container_one {
    flex-direction: column;
  }

  .footer_bottom_left {
    width: 100%;
    flex-direction: column;
    gap: 10px
  }

  .footer_bottom_right {
    margin-inline: auto;
  }

  .changing_behaviour_image,
  .proven_results_image,
  .mobicore_image {
    width: 100%;
    padding-top: 100%;
  }

  .footer_top_col,
  .footer_top_col_details {
    width: 100%;
    text-align: center;
  }

  .footer_top_col_details a {
    width: 100%;
    text-align: center;
  }

  .footer_bullet {
    display: none;
  }

  .changing_behaviour_container {
    padding-bottom: 0px;
  }

  .proven_results_container,
  .better_recovery,
  .mobicore_container {
    padding-top: 0px;
  }

  .proven_results_container {
    padding-bottom: 50px;
  }

  .better_recovery_para {
    padding-top: 20px;
  }

  .subscribe_input {
    max-height: 22px;
  }




  .simple_row {
    flex-wrap: wrap;
  }

  .explore_container {
    text-align: left;
  }

  .explore_heading {
    text-align: left;
    font-size: 32px !important;
  }

  .leadership_row {
    flex-direction: column;
  }

  .leadership_image {
    max-width: 200px;
    margin: 0 auto;
  }

  .leadership_name {
    font-size: 18px;
  }

  .leadership_details {
    font-size: 16px;
  }

  p {
    font-size: 16px;
  }

  .row_container {
    flex-direction: column;
    gap: 32px;
  }

  .row_item {
    gap: 10px
  }

  .flexible_care_heading {
    font-size: 32px;
  }





  .behavioral_science_para {
    font-size: 16px;
  }

  .section_container {
    padding: 64px 0px;
  }

  .behavioral_science_heading {
    font-size: 40px;
  }





  .what_is_mobicore_bottom {
    aspect-ratio: 1312 / 738;
    height: auto;
  }

  .mobicore_coach {
    padding: 64px 16px;
    gap: 48px;
  }

  .mobicore_coach_container {
    gap: 40px;
  }

  .mobicore_coach_container_left {
    gap: 24px;
  }

  .mobicore_coach_container_left_cell_icon {
    width: 48px;
    height: 44px;
  }

  .mobicore_coach_container_left_cell_heading {
    font-size: 32px;
    line-height: 130%;
  }

  .mobicore_coach_container_left_cell_para {
    font-size: 14px;
    line-height: 145%;
  }



  .btn.filled {
    align-self: stretch;
    text-align: center;
  }




  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .accordion-item label {
    font-size: 1rem;
    padding-right: 30px;
  }

  .accordion-content {
    font-size: 0.95rem;
  }




  .flexible_care {
    padding: 60px 0px;
    gap: 40px;
  }

  .flexible_care_container_right {
    gap: 40px;
    padding-top: 0px;
  }

  .flexible_care_heading {
    font-size: 28px;
  }

  .flexible_care_heading_two {
    font-size: 18px;
  }

  .flexible_care_para {
    font-size: 14px;
  }

  .flexible_care_icon {
    width: 40px;
    height: 40px;
  }



  .better_care_heading_one {
    font-size: 28px;
  }

  .better_care_heading_two {
    font-size: 22px;
  }

  .better_care_para {
    font-size: 14px;
  }

  .better_care_icon {
    width: 48px;
    height: 48px;
  }






  .prevent_recover {
    padding: 80px 0px;
    gap: 60px;
  }

  .prevent_recover_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .midLine {
    width: 100%;
    height: 0;
    border-top: 1px solid var(--color-white);
    border-left: none;
  }

  .prevent_recover_heading {
    font-size: 24px;
  }

  .prevent_recover_para {
    font-size: 14px;
  }






  .empower_faster {
    flex-direction: column;
    gap: 32px;
    padding: 64px 0px;
  }

  .empower_faster_left {
    font-size: 32px;
    line-height: 130%;
  }

  .empower_faster_right {
    font-size: 16px;
    gap: 24px;
  }



  .subscribe_input_row {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }



  .hero {
    padding: 32px 0px;
    gap: 40px;
  }

  h1 {
    font-size: 40px !important;
    line-height: 1.3;
  }

  .hero_headings p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero_button a.btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .hero_media {
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }

  .btn {
    padding: 0rem 1rem !important;
  }



  .auth-buttons a {
    display: none;
  }


  .engaging_msk_realtime_feedback_container_inner {
    flex-direction: column;
    gap: 40px;
  }

  .engaging_msk_realtime_feedback_container_inner_right {
    flex: 1;
    aspect-ratio: 503 / 340;
  }

  .quote_text {
    font-size: 18px;
  }





  .link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    display: none;
  }

  .link:hover::after {
    transform: scaleX(1);
    display: none;
  }

  .resource_library_container {
    flex: 1;
    padding-top: 0px;
  }

  .resource_library_row {
    gap: 64px
  }

  .resource_library_col {
    gap: 64px
  }

  .privacy_heading {
    font-size: 32px;
  }

  .privacy_sub_heading {
    font-size: 20px;
  }
}


/* PIXELS 600px */
@media (max-width: 600px) {
  .study-card h3 {
    font-size: 20px;
  }

  .careers-cta {
    flex-direction: column;
    gap: 16px
  }

}

/* PIXELS 480px */
@media (max-width: 480px) {
  .faq-title {
    font-size: 1.75rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
  }

  .accordion-item label {
    font-size: 0.95rem;
  }

  .accordion-content {
    font-size: 0.9rem;
  }


  .flexible_care_heading {
    font-size: 24px;
  }

  .flexible_care_container_right_cell {
    flex-direction: column;
    align-items: flex-start;
  }

  .flexible_care_container_right_cell_one {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .flexible_care_icon {
    width: 36px;
    height: 36px;
  }

  .flexible_care_heading_two {
    font-size: 16px;
  }

  .flexible_care_para {
    font-size: 13px;
  }


  .better_care_heading_one {
    font-size: 24px;
  }

  .better_care_heading_two {
    font-size: 20px;
  }

  .better_care_para {
    font-size: 13px;
  }

  .better_care_tag {
    font-size: 14px;
  }

  .better_care_right_top_cell {
    gap: 8px;
  }

  .better_care_right_bottom {
    gap: 16px;
  }





  .prevent_recover_heading {
    font-size: 20px;
  }

  .prevent_recover_para {
    font-size: 13px;
  }

  .midLine {
    margin: 20px 0;
  }
}


/* GLOBAL HEADING FONT FAMILY */
[class*="heading"] {
  font-family: "Raleway", sans-serif !important;
}

[class*="title"] {
  font-family: "Raleway", sans-serif !important;
}