@charset "UTF-8";
/* CSS Document */

/*Blue border text box */
.outer-container {
      background-color: #006FAC;
      border-top: 5px solid #006FAC;
      border-left: 5px solid #006FAC;
      border-right: 5px solid #006FAC;
      border-bottom: 15px solid #006FAC;
      border-radius: 8px;
      box-sizing: border-box;
      max-width: 100%;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    }

    .inner-container {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 1.5rem;
      box-sizing: border-box;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      text-align: center;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .inner-container {
        padding: 1rem;
      }
    }

/*CTA with Shadow */
  .cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  .cta-button {
    background-color: #006FAC;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    box-shadow: -5px 5px 0px 0px rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  }

  .cta-button:hover {
    background-color: #005a99;
    box-shadow: -5px 5px 0px 0px #FEC131;
    border: 1px solid #ffffff;
  }

/*Header with flavor*/
.h1ver2 {
  color: #FFF;
  -webkit-text-stroke: 1px #006FAC;
  text-shadow: -5px 4px 0 #006FAC;
  font-weight: bold;
}