/* ================= COMPTIA INTRO SECTION ================= */

.abt-comptia-intro{
  padding:100px 20px;
  background:#ffffff;
}

.abt-comptia-container{
  max-width:900px;
  margin:auto;
  text-align:center;
}

/* LOGO */
.abt-comptia-logo{
  margin-bottom:30px;
}

.abt-comptia-logo img{
  max-width:220px;
  height:auto;
}

/* HEADING */
.abt-comptia-intro h2{
  font-size:32px;
  font-weight:700;
  color:#8b3f00;
  margin-bottom:25px;
  position:relative;
}

/* Gold underline accent */
.abt-comptia-intro h2::after{
  content:"";
  width:80px;
  height:4px;
  background:#f4a300;
  display:block;
  margin:15px auto 0;
  border-radius:2px;
}

/* PARAGRAPH */
.abt-comptia-intro p{
  font-size:17px;
  line-height:1.8;
  color:#444;
  margin-top:25px;
}

/* MOBILE */
@media(max-width:768px){
  .abt-comptia-intro h2{
    font-size:24px;
  }

  .abt-comptia-intro p{
    font-size:15px;
  }
}

/* ================= COMPTIA ACCORDION ================= */

.abt-comptia-accordion{
  padding:80px 20px;
  background:#f8f8f8;
}

.abt-comptia-accordion-container{
  max-width:900px;
  margin:auto;
}

.abt-accordion-title{
  text-align:center;
  font-size:30px;
  font-weight:700;
  margin-bottom:50px;
  color:#8b3f00;
}

/* ITEM */
.abt-accordion-item{
  margin-bottom:20px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

/* HEADER */
.abt-accordion-header{
  width:100%;
  padding:18px 25px;
  background:linear-gradient(90deg,#f4a300,#8b3f00);
  color:#fff;
  border:none;
  text-align:left;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
}

.abt-accordion-header:hover{
  background:linear-gradient(90deg,#ffb733,#6b2e00);
}

/* CONTENT */
.abt-accordion-content{
  max-height:0;
  overflow:hidden;
  background:#ffffff;
  transition:max-height .4s ease;
}

.abt-accordion-content ul{
  list-style:none;
  padding:20px 25px;
  margin:0;
}

.abt-accordion-content li{
  padding:8px 0;
  font-size:15px;
  color:#333;
  border-bottom:1px solid #eee;
}

.abt-accordion-content li:last-child{
  border-bottom:none;
}