/* ABOUT SECTION */
.about-section{
  padding:100px 0;
  background:#111;
}

.about-container{
  max-width:1140px;
  margin:0 auto;
  padding:0 20px;
}

.about-header{
  text-align:center;
  margin-bottom:60px;
}

.about-header h2{
  font-size:32px;
  margin-bottom:15px;
  color:#ffffff;
}

.about-header p{
  color:#aaa;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
}

.about-content{
  display:flex;
  gap:50px;
  align-items:center;
}

.about-text{
  flex:1;
}

.about-text p{
  color:#ccc;
  line-height:1.8;
  margin-bottom:20px;
}
.about-text a{
  color:inherit;          /* mengikuti warna teks */
  text-decoration:none;   /* hilangkan underline */
  font-weight:500;
}

.about-text a:hover{
  color:#ff9900;          /* efek hover elegan */
}

.about-highlight{
  flex:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.highlight-box{
  background:#1a1a1a;
  padding:25px;
  border-radius:8px;
  border:1px solid #222;
  transition:0.3s;
}

.highlight-box:hover{
  border-color:#ff9900;
}

.highlight-box strong{
  display:block;
  font-size:18px;
  color:#ff9900;
  margin-bottom:10px;
}

.highlight-box span{
  font-size:14px;
  color:#bbb;
}

/* RESPONSIVE */
@media(max-width:768px){

  .about-section{
    padding:60px 0;
  }

  .about-content{
    flex-direction:column;
  }

  .about-highlight{
    grid-template-columns:1fr;
  }

  .about-header h2{
    font-size:24px;
  }

}