.contactMe-banner {
    position: relative;
    color: var(--white);
    border-radius: var(--border-radius-xs);
    overflow: hidden;
    display: flex;
    width: 100%;
      align-items: center;
    padding: var(--padding-xl);
    gap: var(--spacing-base);
    margin-bottom: var(--margin-lg);
    border: 0.62px solid var(--border-action-primary-gray);
    background-color: var(--bg-section-primary-light);
    justify-content: center;
    
    /* FIX: Added 'center /' before contain, and closed the bracket */
background-image: url('../Assets/00-contact-banner-ks.svg'); /* Or your correct path */
    
    /* Center the image horizontally and vertically */
    background-position: center center;
    
    /* Scale the image to cover the entire background area */
    background-size: cover;
    
    /* Prevent the image from repeating if the container is larger than the SVG */
    background-repeat: no-repeat;}
.contactMe-banner__copy::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 490px;
  right: -181px;
  border-radius: 62%;
  background: transparent;
  pointer-events: none;
}

.contactMe-banner__copy {
  display: flex;
  width:62%;
  height: fit-content;
  flex-direction: column;
  gap: var(--spacing-base);
     padding: var(--padding-xl);
     background-color: white;
        opacity: 0.9;


}





.contactMe-banner__copy h2 {
  text-underline-offset: 4px;
  font-weight: var(--font-weight-bold);
  text-decoration-thickness: 2.62px;
  text-align: center;


}

.contactMe-banner__copy p,
.contactMe-banner__copy .--s6 {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-direction: column;


}

.contactMemail-banner {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  gap: var(--spacing-sm);
  flex-direction: column;
  padding-inline: var(--padding-lg);

}



.contactMe__media {
  width: 408px;
  height: 205px;
  justify-self: end;
  align-self: end;
  z-index: 1;
  background: url('Assets/ux-banner.svg') right / contain no-repeat;
}

.--banner-description {
  width: fit-content;

  padding: var(--padding-xl);
  margin: 0;

}

.--text-banner {
  color: var(--text-main-light);

}


.contactMemail-banner a.primary-banner {
  text-decoration: none;
  display: flex;
  width: fit-content;
  gap: var(--spacing-sm);
  /* padding: 14px 20px; */
        padding: var(--padding-lg) var(--padding-xl);
  color: var(--text-anchor-light);
  font-weight: var(--font-weight-medium);
  background-color: transparent;
      border-radius: var(--border-radius-lg);
    border: 3px solid transparent;
    outline: transparent solid 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-wrap: nowrap;
  background-color: var( --action-primary-bg-dark);
}



 .contactMemail-banner a.primary-banner:hover{
      border-color: var(--border-blue-active);
  outline: 6px solid var(--border-component-quaternary-light);
      border-color: var(--border-blue-active);
    box-shadow: 0 4px 12px 0px rgba(5, 8, 34, 0.4);
  }


  .contactMemail-banner a.primary-banner:focus{
  border-color: var(--border-blue-active);
  outline: 6px solid var(--border-component-quaternary-light);
      box-shadow: 0 0 0 .2rem rgba(64, 77, 102, .25);
}
@media only screen and (max-width: 1048px) {
.contactMe-banner{
    background-size:auto;
}
}
@media only screen and (max-width: 728px) {


  .contactMe__media {
    width: 162px;
  }
}

@media print {
  .contactMemail-banner {
    -webkit-print-color-adjust: exact !important;
    /* For Chrome, Safari, Edge */
    print-color-adjust: exact !important;
    /* Standard property */
  }

  .contactMemail-banner a.primary-banner {
    font-size: var(--font-size-sm);

  }
}