.pictureoverlay {
    position: relative;
    background: url('/assets/img/your-background.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
  }

  .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
  }

  .overlay-content h1 {
    color: white;
    font-weight: 900;
    font-size: 4vw;
    line-height: 1.1;
    margin: 0;
  }

  .contact-button {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid white;
    padding: 6px 16px;
    border-radius: 20px;
    background: transparent;
    color: white;
    font-size: 0.9rem;
    z-index: 3;
  }

  .contact-button:hover {
    background-color: white;
    color: black;
  }

  .text-left-overlay {
    align-items: flex-start;
    text-align: left;
  }

  .text-right-overlay {
    align-items: flex-end;
    text-align: right;
  }

  .text-center-overlay {
    align-items: flex;
    text-align: center;
  }
  /* Mobile responsiveness */
  @media (max-width: 767.98px) {
    .overlay-content {
      padding: 2rem 1rem;
    }

    .overlay-content h1 {
      font-size: 8vw;
      text-align: center;
      align-items: center;
    }

    .text-left-overlay,
    .text-right-overlay {
      align-items: center !important;
      text-align: center !important;
    }

    .contact-button {
      top: 10px;
      right: 10px;
      font-size: 0.8rem;
      padding: 4px 12px;
    }
  }