@media (min-width: 768px) {
  /* hero */

  main {
    width: 100vw;
    height: 100svh;
    background-color: black;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
  }
  main img {
    object-fit: cover;
    object-position: 0% 0%;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 0;
  } 
  .medicaid-announcement {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 500px;
  height: 125px;
  background: rgba(255, 255, 255, 0.85);
  border: 3px solid #c62828;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(198, 40, 40, 0.4);
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Segoe UI', Roboto, sans-serif;
  z-index: 3;
  animation: pulseBorder 2s infinite;
}

.medicaid-announcement p {
  color: #ff0000;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

/* Subtle red pulse to attract attention */
@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 rgba(198, 40, 40, 0.4);
  }
  50% {
    box-shadow: 0 0 50px rgba(236, 1, 1, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(198, 40, 40, 0.4);
  }
}
  main .hero-header-text {
    position: absolute;
    z-index: 1;
    color: white;
    margin-left: 7%;
    max-width: 50%;
  }
  main .hero-header-text h1 {
    font-size: 3em;
  }

  .call-to-action {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .call-to-action .schedule {
    padding: 15px 30px 15px 30px;
    border-radius: 25px;
    background-color: #ffd96a;
    color: black;
  }
  .call-to-action .call {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 25px;
    padding: 15px 30px 15px 30px;
    cursor: pointer;
    border-radius: 25px;
    background-color: #022855;
  }

  .call-to-action .call svg {
    fill: white;
    height: 25px;
    width: 25px;
    margin-right: 5px;
    cursor: pointer;
  }

  .call-to-action .call label {
    cursor: pointer;
  }
}
@media (max-width: 768px) {
  /* hero */

  main {
    width: 100vw;
    height: 100svh;
    background-color: black;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
  }
  .medicaid-announcement {
  position: absolute;
  top: 90px;
  width: calc(100% - 10px);
  height: auto;
  background: rgba(255, 255, 255, 0.85);
  border: 3px solid #c62828;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(198, 40, 40, 0.4);
  padding: 10px;
  margin: 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Segoe UI', Roboto, sans-serif;
  z-index: 3;
  animation: pulseBorderMobile 2s infinite;
}

.medicaid-announcement p {
  color: #ff0000;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}
.medicaid-announcement p strong {
  width: 100%;
}


@keyframes pulseBorderMobile {
  0% {
    box-shadow: 0 0 0 rgba(198, 40, 40, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(236, 1, 1, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(198, 40, 40, 0.4);
  }
}

  main img {
    object-fit: cover;
    object-position: 80% 0%;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  main .hero-header-text {
    position: absolute;
    z-index: 1;
    color: white;
    width: 100vw;
    top: 25vh;
    bottom: 0;
    box-sizing: border-box;
    text-align: center;
  }
  main .hero-header-text h1 {
    font-size: 2.5em;
    padding: 0px 18%;
  }
  main .hero-header-text h2 {
    font-size: 1.25em;
    padding: 0px 15%;
  }

  .call-to-action {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
  }

  main .call-to-action .call {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 30px 15px 30px;
    cursor: pointer;
    border-radius: 25px;
    background-color: #022855;
    box-sizing: border-box;
    width: calc(50vw - 20px);
    height: 100px;
    margin: 10px;
    box-sizing: border-box;
    position: absolute;
    bottom: 25px;
    right: 0px;
  }
  main .call-to-action .schedule {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 30px 15px 30px;
    cursor: pointer;
    border-radius: 25px;
    background-color: #ffd96a;
    color: black;
    box-sizing: border-box;
    width: calc(50vw - 20px);
    height: 100px;
    margin: 10px;
    box-sizing: border-box;
    position: absolute;
    bottom: 25px;
    left: 0px;
  }
  .call-to-action .call svg {
    fill: white;
    height: 25px;
    width: 25px;
    margin-right: 5px;
    cursor: pointer;
  }

  .call-to-action .call label {
    cursor: pointer;
  }
}
