 .career-full-image {
      width: 100%;
      max-height: 800px;
      object-fit: cover;
      display: block;
    }
    .contact-form-wrapper {
      padding: 3rem 2rem;
      max-width: var(--screen-width-limit);
      margin: 0 auto;
      color: var(--primary-color);
      display: flex;
      gap: 3rem;
      align-items: flex-start;
    }
    .contact-form-iframe {
      flex: 1;
      min-height: 620px;
      border: none;
      display: block;
    }
    .contact-details-sidebar {
      flex-basis: 38%;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      padding-top: 0.5rem;
    }
    .contact-detail-group .cdg-label {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .contact-detail-group .cdg-text {
      font-size: 1rem;
      line-height: 1.9;
      /* opacity: 0.8; */
    }
    @media screen and (max-width: 780px) {
      .contact-form-wrapper {
        flex-direction: column;
        gap: 2rem;
      }
      .contact-details-sidebar {
        flex-basis: auto;
        width: 100%;
      }
      .contact-form-iframe {
        min-height: 480px;
        width: 100%;
      }
    }