body {
    max-width: 100%;
    overflow-x: hidden;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  .single-item-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .content-box {
    flex-wrap: wrap;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    padding: 15px;
    border-radius: 8px;
  }

  .text {
    flex: 1;
  }

  .text h4 {
    margin: 0 0 8px;
  }

  .text p {
    margin: 0;
    color: #555;
  }

  .image {
    flex-shrink: 0;
  }

  .image img {
    width: 421px;
    height: 254px;
    object-fit: cover;
    border-radius: 6px;
  }

  @media (max-width: 768px) {
    .content-box {
      flex-direction: column-reverse;
      text-align: center;
    }

    .image img {
      width: 100%;
      max-width: 421px;
      height: auto;
    }
    section.about-page {
        margin-bottom: 0 !important;
        padding-bottom: 14px !important;
    }


}

@media (max-width: 768px) {
    @media only screen and (max-width: 991px) {
        .body_about footer {
            margin-top: 0;
	    padding-top:0;	
        }
    }
}