.image-grid {
    display: flex;
    justify-content: center;
    gap: 20px; 
    padding: 20px;
    flex-wrap: wrap; 
  }
  

  .image-block {
    position: relative;
    height: max-content;
    width: 30%; 
    max-width: 400px;
    overflow: hidden;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .image-block img {
    width: 100%;
    max-height: 405px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s, filter 0.3s;
    filter: brightness(0.9); 
  }

  .image-block:hover img {
    transform: scale(1.05);
  }
  
  .image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); 
    width: 90%;
    opacity: 0.9;
  }
  .image-text h3{
    color: white;
  }
  h3{
    text-align: center;
  }
  hr{
    width: 5%;
  }

  @media screen and (max-width: 800px) {
    .image-grid {
        flex-direction: column;
        align-items: center;
    }
    .image-block{
        width: 90%;
    }
    .row-img-text .row-block{
        flex-direction: column;
    }
    .container .row-img-text{
        margin-top: 0px;
    }
    .triple-image-container{
        flex-direction: column;
    }
  }

.row-img-text{
    margin-top: 60px;
}
.row-img-text .row-block {
    display: flex;
    width: 100%;
    gap: 0;
  }
  
.row-img-text .text-block, .row-img-text .image-block-row {
    flex: 1;
    box-sizing: border-box;
  }
  
  .row-img-text .text-block {
    padding: 20px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .row-img-text .image-block-row {
    overflow: hidden;
  }
  
  .row-img-text .image-block-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

.triple-image-container {
  display: flex;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.triple-image-item {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.triple-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.triple-image-item:hover img {
  transform: scale(1.05);
}

.triple-image-item:not(:last-child) {
  margin-right: -1px;
}
.multi-content-block {
    display: flex;
    width: 100%;
    gap: 30px;
    box-sizing: border-box;
  }
  
  .content-list-block {
    flex: 1;
    padding: 15px;
    border-radius: 6px;
  }
  
  .clean-list {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 10px;
  }
  
  .clean-list li {
    padding: 8px 0;
    text-align: left;
  }
  
  .clean-list li:last-child {
    border-bottom: none;
  }
  
  .list-title {
    color: #fff;
    text-align: left;
    margin-bottom: 15px;
    font-size: 1.2em;
  }
  
  .text-content-block {
    flex: 1;
    padding: 15px;
    border-radius: 6px;
  }
  
  .text-title {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2em;
  }
  
  .text-content {
    line-height: 1.6;
  }
  
  .text-content p {
    margin-bottom: 10px;
  }
  
  .text-content p:last-child {
    margin-bottom: 0;
  }
#footer.bg-gray{
    background: #000!important;
}