.Global-page-header {
    /*background: linear-gradient(135deg, #004C97, #006FCE);*/
    background: #004c97;
    /*background-image: url(/drupal/sites/default/files/2025-04/mdr-background-mask_0.svg);*/
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
    color: #fff;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  
  .Global-page-header *{
    font-family: 'Roboto';
  }
  
  .Global-page-header-image-wrapper {
      overflow: hidden;
      height: 600px;
      width: 50%;
  }
  
  
  .Global-page-header-image {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 0  300px 300px 0;
      object-fit: cover;
  }
  
  .Global-page-header-content {
   width: 50%;
     margin: 20px;
      padding: 0 50px 0 20px;
      max-width:1000px; 
   
    
  }
  
  .Global-page-title {
    font-size: 64px;
    margin-bottom: 10px;
    color: #fff;
    font-weight:900;
    line-height:1.2;
  }
 .Global-page-title span{
font-weight:400;
} 
  .Global-page-description {
    font-size: 16px !important;
    margin-bottom: 20px;
     line-height:1.5;
	margin-block-start: 0 !important;
  }
  
  .Global-page-button {
    display: inline-flex;
    padding: 10px 26px;
    background: #ffffff;
    color: #004C97;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease-in-out !important;
      font-size: 14px;
      justify-content: center;
      align-items: center;
          line-height: 1.5;
  }
  .Global-page-button svg{
  margin-left:7px;
  }
  
  .Global-page-button:hover {
    background: #3370ac ;
    color: #ffffff !important;
    transform: scale(1.05) !important;
  }
  
  @media (max-width: 780px) {
    .Global-page-header {
      flex-direction: column;
      text-align: center;
      gap: 0;
    }
  
    .Global-page-header-image-wrapper {
     width: 100%;
      height: auto; 
      
    }
  
    .Global-page-header-image {
      border-radius: 0 0 550px 550px;
      height: auto;
      max-height: 400px;
      object-fit: cover;
    }
  
    .Global-page-header-content {
      width: 100%;
      padding: 20px;
      margin: 0;
    }
  
    .Global-page-title {
      font-size: 38px;
    }
    .Global-page-button {
      font-size: 13px;
      padding: 8px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .Global-page-header {
      flex-direction: column;
      text-align: center;
      gap: 0;
    }
  
    .Global-page-header-image-wrapper {
      width: 100%;
      height: auto;
    }
  
    .Global-page-header-image {
      border-radius: 0 0 550px 550px;
      height: auto;
      max-height: 320px;
      object-fit: cover;
    }
  
    .Global-page-header-content {
      width: 100%;
      padding: 20px;
      margin: 0;
    }
    .Global-page-title {
        font-size: 28px;
      }
    .Global-page-button {
      font-size: 13px;
      padding: 8px 20px;
    }
  }
  @media (min-width: 1800px) {
    .Global-page-header{
        gap: 130px;
    }
    .Global-page-description {
        font-size: 20px !important;
      }
  }
  