
.hsg-frames__floated-screen img[data-v-4b7e1cc6] {
 cursor: pointer;
 
  width: 100%;
  /* Ensures the image takes up the full width of the parent container */
  max-width: 1200px;
  /* Set a maximum width for larger screens */
  height: auto;
  /* Maintain the aspect ratio of the image */
  display: block;
  /* Remove any unwanted whitespace or gaps */
  margin: 0 auto;
  /* Center the image */
  -o-object-fit: cover;
     object-fit: cover;
  /* Optional: Makes sure the image scales properly while covering the container */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
.hsg-frames__floated-screen img[data-v-4b7e1cc6] {
    max-width: 100%;
    /* For mobile screens, ensure the image doesn't exceed the viewport */
    height: auto;
}
}
.hsg-page-header__container[data-v-4b7e1cc6] {
  max-width: 100%;
  padding: 1rem;
  margin: 0 auto;
  border-radius: 8px;
  margin-top: 90px;
  /* Allow space for fixed header */
}
.open-popup[data-v-4b7e1cc6]{
  cursor: pointer;
}
.hsg-page-header__content[data-v-4b7e1cc6] {
  text-align: center;
  padding: 1rem;
}
.hsg-page-header__inner-wrapper[data-v-4b7e1cc6] {
  margin: 2rem 0;
}
.hsg-page-header__description[data-v-4b7e1cc6] {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hsg-page-header__ctas .cta--primary[data-v-4b7e1cc6] {
  background-color: #004295;
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background-color 0.3s;
  display: inline-block;
}
.hsg-page-header__ctas .cta--primary[data-v-4b7e1cc6]:hover {
  background-color: #003372;
}

/* Modal styles */
.modal-overlay[data-v-4b7e1cc6] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  /* Vertical and horizontal centering */
  z-index: 100000;
  padding: 0 1rem;
  /* Padding to avoid modal touching the edges on small screens */
}
.modal-content[data-v-4b7e1cc6] {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  /* Limit maximum width */
  text-align: left;
  box-sizing: border-box;
  /* Ensure padding doesn't affect total width */
  margin: 1rem;
  /* Add margin for extra spacing */
}
h2[data-v-4b7e1cc6] {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #333;
}
.form-group[data-v-4b7e1cc6] {
  margin-bottom: 5px;
}
label[data-v-4b7e1cc6] {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 500;
  font-size: 13px;
  color: #333;
}
input[data-v-4b7e1cc6] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
input[data-v-4b7e1cc6]:focus {
  border-color: #ff5c35;
  outline: none;
}
.is-invalid[data-v-4b7e1cc6] {
  border-color: red;
}
.error[data-v-4b7e1cc6] {
  color: red;
  font-size: 10px;
  margin-top: 0.25rem;
}
.form-buttons[data-v-4b7e1cc6] {
  gap: 7px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.submit-btn[data-v-4b7e1cc6] {
  background-color: #ff5c35;
  color: white;
  padding: 0.5em 1.5em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.submit-btn[data-v-4b7e1cc6]:hover {
  background-color: #ff4a24;
}
.close-btn[data-v-4b7e1cc6] {
  background-color: #ccc;
  color: #333;
  padding: 0.5em 1.5em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.close-btn[data-v-4b7e1cc6]:hover {
  background-color: #bbb;
}
.success-message[data-v-4b7e1cc6] {
  background-color: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
  border-radius: 5px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  transition: opacity 0.5s ease-in-out;
}
.success-message.fade-out[data-v-4b7e1cc6] {
  opacity: 0;
}

/* Mobile-first styles */
@media (max-width: 600px) {
.hsg-page-header__container[data-v-4b7e1cc6] {
    padding: 1rem;
    margin-top: 80px;
}
.hsg-page-header__description[data-v-4b7e1cc6] {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.submit-btn[data-v-4b7e1cc6],
  .close-btn[data-v-4b7e1cc6] {
    width: 100%;
    margin-bottom: 1rem;
}
}

/* Larger screens */
@media (min-width: 768px) {
.hsg-page-header__container[data-v-4b7e1cc6] {
    max-width: 720px;
}
.submit-btn[data-v-4b7e1cc6],
  .close-btn[data-v-4b7e1cc6] {
    width: auto;
}
}
@media (min-width: 1024px) {
.hsg-page-header__container[data-v-4b7e1cc6] {
    max-width: 960px;
}
.modal-content[data-v-4b7e1cc6] {
    max-width: 500px;
}
}

/* Mobile-first styles */
@media (max-width: 600px) {
.modal-content[data-v-4b7e1cc6] {
    max-width: 90%;
    /* Make the modal take up more of the screen width on small devices */
    padding: 1rem;
    /* Reduce padding for smaller screens */
}
}

