body {
	background-color: #F8F8F8;
}
	 
.about-container {
  max-width: 1122px;
  margin: 20px auto;
  padding: 15px 15px;
}

/* === BOX WRAPPER === */
.content-box {
  background-color: #fff;
  border-left: 5px solid #C17E34; /* garis vertikal kiri */
  padding: 25px 70px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: justify; /* teks rata kiri-kanan */
  border-radius: 0px;
}

.content-box2 {
  background-color: #fff;
  border-left: 5px solid #762A15; /* garis vertikal kiri */
  padding: 25px 70px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: justify; /* teks rata kiri-kanan */
  border-radius: 0px;
}

/* === TITLES === */
.section-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #274732;
}

/* === TEXTS === */
.content-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

/* === OUR STRENGTH === */
.strength-box {
  margin-bottom: 40px;
  text-align: center;
}

.strength-box h5 {
  font-weight: 700;
  color: #C17E34;
  margin-bottom: 10px;
}

.strength-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .about-container {
    
	 padding: 10px 15px 50px;
  }

  .content-box {
    padding: 20px 25px;
    border-left: 4px solid #C17E34;
  }

  .content-box2 {
    padding: 20px 25px;
    border-left: 4px solid #762A15;
  }


  .section-title {
    font-size: 1.5rem;
  }

  .content-box p {
    font-size: 1rem;
  }
}


