.page-header {
    position: relative; 
    padding: 80px 0; 
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
    }
    
    .page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    }



    .content-section {
        position: relative;  
        overflow: hidden;  
      }
      
       
      .content-section--with-bg::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        
        height: 100%;
        background-image: url('../../assets/icons/Mediterranean_Sea_location_map_1.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
 
        z-index: -1;
      }
      
      .image-gallery {
        display: flex;  
        flex-wrap: wrap;  
        gap: 24px;  
        margin-bottom: 60px;
      }
      
      .gallery-item {
        width: 100%;  
        flex-shrink: 0;  
      }
      
      .image-gallery img {
        border-radius: 5px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        width: 100%;
      }
      
      
      /* 
        Büyük Ekranlar (Tablet ve üstü)
        768px ve üzeri ekran genişliğinde, kademeli "kırık ızgara" düzenini uygula.
      */
      @media (min-width: 1024px) {
        .image-gallery {
          position: relative;
          height: 450px;
           
    
          gap: 0;  
        }
      
        .gallery-item {
          position: absolute;
          width: 45%;
        }
      
         
        .gallery-item:nth-child(1) {
          top: -20px;
          left: 0;
        }
      
         
        .gallery-item:nth-child(2) {
          bottom: 0;
          right: 0;
        }
      }
      

      .text-block a {
        color: var(--primary-blue-500);
        font-weight: 500;
      }

      .about-info{
        /* display: flex;
        justify-content: space-between; */
        gap: 0px;
      }

      

      .about-info-content-item{
        display: flex;
        margin-bottom:15px;
      }
      
      .about-info-content-item__icon-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        flex-shrink: 0;
        margin-right: 5px;
      }
      
      
       
      .about-info-content-item__text {
        display: flex;
        flex-direction: column;
      
      }
      .about-info-content-item__text span {
        font-size: 16px;
        font-weight: var(--font-weight-light);
        color: var(--primary-blue-900);
      }
      .about-info-content-item__text strong {
        font-size: 18px;
        font-weight: var(--font-weight-semibold);
        line-height: 1.2;
        color: var(--neutral-gray-900);
        margin-bottom: 5px;
      
      }
