:root {
  --bobo-pic-text-p: 60px 15px;
  --title-text-color: #333333;
  --text-muted: #666666;
}

.bobo_pic_text * {
  box-sizing: border-box !important;
}

.bobo_pic_text {
  padding: 70px;
  width: 100%;
  overflow: hidden;
}

.bobo_pic_text .main-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.bobo_pic_text .left-cards-side {
  width: 62%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.bobo_pic_text .header-area {
  text-align: center;
  margin-bottom: 20px;
}

.bobo_pic_text .header-area h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--title-text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.bobo_pic_text .header-area em {
  font-size: 16px;
  color: #ae8d5b;
  font-style: normal;
  display: block;
}

.bobo_pic_text .commitment-grid {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.bobo_pic_text .commitment-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 12px;
  flex: 1;
  min-width: 0;
  box-shadow: 0 4px 15px rgb(0 0 0 / 6%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.bobo_pic_text .commitment-item:hover {
  transform: translateY(-5px);
}

.bobo_pic_text .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  flex-shrink: 0;
  background-color: #000000;
}

.bobo_pic_text .icon-box img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.bobo_pic_text .commitment-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bobo_pic_text .commitment-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.bobo_pic_text .action-btn-box {
  text-align: -webkit-center;
  margin-top: 20px;
}

.bobo_pic_text .btn-more {
  margin-top: 30px;
  width: 194px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  background: var(--color-primary);
  border-radius: var(--button-radius);
}

.bobo_pic_text .btn-more:hover {
  background: none;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.bobo_pic_text .right-pic-side {
  width: 35%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}

.bobo_pic_text .img-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bobo_pic_text .img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .bobo_pic_text {
    padding: 40px 20px;
  }
  .bobo_pic_text .main-layout {
    flex-direction: column;
    gap: 40px;
  }
  .bobo_pic_text .left-cards-side {
    width: 100%;
    margin-bottom: 0;
  }
  .bobo_pic_text .right-pic-side {
    width: 100%;
    justify-content: center;
  }
  .bobo_pic_text .img-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .bobo_pic_text .commitment-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
  .bobo_pic_text .commitment-item {
    flex: none;
    width: calc(50% - 8px);
    padding: 40px 15px;
  }
  .bobo_pic_text .action-btn-box {
    display: flex;
    justify-content: center;
  }
  .bobo_pic_text .btn-more {
    margin-left: auto;
    margin-right: auto;
  }
}



@media screen and (max-width: 576px) {
  .bobo_pic_text {
    padding: 30px 15px;
  }
  .bobo_pic_text .header-area h2 {
    font-size: 26px;
  }
  .bobo_pic_text .header-area em {
    font-size: 15px;
  }
  .bobo_pic_text .commitment-grid {
    gap: 12px;
  }
  .bobo_pic_text .commitment-item {
    width: 100%;
    padding: 30px 15px;
  }
  .bobo_pic_text .action-btn-box {
    display: flex;
    justify-content: center;
  }
  .bobo_pic_text .btn-more {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media screen and (max-width: 768px) {
  .bobo_pic_text .header-area h2 {
    font-size: 24px;
  }
}
