.about-container {
  padding: 14px 68px;
  width: 100%;
  max-width: 1952px;
  margin: 0 auto;
  background-color: #fff;
}
body{
  scroll-behavior: smooth;
}
.about-header {
  width: 300px;
  height: 70px;
  padding: 9px 26px;
  border-radius: 15px;
  border: 2px solid #2b1e06;
  background:
    url("https://cdn.builder.io/api/v1/image/assets/TEMP/0bb58b342c348a4c5ada6fe57b5bbcd6892c4193")
      lightgray 50% / cover no-repeat,
    linear-gradient(
      111deg,
      rgba(255, 255, 255, 0.04) 0.84%,
      rgba(255, 255, 255, 0.01) 63.92%
    );
  box-shadow: 0px 1px 24px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  color: #633c0e;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 45px;
  text-align: center;
}

.main-content {
  display: flex;
  gap: 50px;
}

.text-content {
  flex: 1;
  max-width: 1068px;
  color: #633c0e;
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  line-height: 162%;
}

.content-section {
  margin-bottom: 30px;
}

.section-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.section-subtitle {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.section-description {
  margin: 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  margin: 0;
}

.image-container {
  flex: 1;
  position: relative;
  margin-top: 0px;
}

.main-image {
  width: 650px;
  height: 500px;
  max-width: 908px;
  aspect-ratio: 908/605;
  object-fit: cover;
}

.monitoring-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

@media (max-width: 991px) {
  .about-container {
    padding: 14px 30px;
  }

  .about-header {
    width: 50%;
    max-width: 200px;
    height: auto;
    font-size: 20px;
    font-weight: 700;
  }

  .main-content {
    flex-direction: column;
  }
  

  .text-content {
    font-size: 20px;
  }

  .image-container {
    margin-top: 15px;
  }
}

@media (max-width: 640px) {
  .about-container {
    padding: 14px 20px;
  }

  .about-header {
    font-size: 20px;
    padding: 15px;
    width: 50%;
    max-width: 400px;
    height: auto;
    
  }
  
  .text-content {
    font-size: 15px;
  }
.section-description{
  margin-bottom: 0px;
}
  .section-title,
  .section-subtitle {
    font-size: 22px;
  }
  .image-container {
      margin-top: 5px;
      width: 20px;
    }
  .main-image {
    width: 300px;
    height: 200px;
    
  }
  .monitoring-icons {
    display: none;
  }
}