/* ===== FULL WIDTH ===== */
.fac-wrap{
  width:100% !important;
  max-width:none !important;
  padding:30px 40px;
  box-sizing:border-box;
}

@media (max-width:768px){
  .fac-wrap{ padding:16px; }
}

/* ===== HEADER ===== */
.fac-header{
  max-width:1100px;
  margin:auto;
  margin-bottom:20px;
  background:#128ae6; /* CHANGED */
  color:#fff;
  font-size:28px;
  font-weight:800;
  text-align:center;
  padding:18px;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.10);
}

/* ===== BOX ===== */
.fac-box{
  max-width:1100px;
  margin:auto;
  background:#fff;
  border-radius:16px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.08);
}

/* ===== ITEM ===== */
.fac-item{
  border-bottom:1px solid #eee;
}

.fac-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px;
  font-size:20px;
  font-weight:700;
  color:#128ae6; /* CHANGED */
  text-decoration:none;
}

.fac-title:hover{
  background:#f2f9fd;
}

/* left dot */
.fac-left{
  display:flex;
  gap:12px;
  align-items:center;
}

.fac-dot{
  width:10px;
  height:10px;
  background:#128ae6; /* CHANGED */
  border-radius:50%;
  box-shadow:0 0 0 6px rgba(110,186,222,.15);
}

/* arrow */
.fac-arrow{
  width:36px;
  height:36px;
  background:rgba(110,186,222,.12);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#6ebade; /* CHANGED */
  transition:.3s;
}

.fac-item.is-open .fac-arrow{
  transform:rotate(180deg);
}

/* ===== CONTENT ===== */
.fac-content{
  max-height:0;
  overflow:hidden;
  transition:.4s;
}

.fac-item.is-open .fac-content{
  max-height:2000px;
  padding:15px 25px 25px;
}

/* ===== LINKS GRID ===== */
.fac-links{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

/* ===== LINK STYLE ===== */
.fac-link{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 15px 12px 22px;
  border-radius:12px;
  text-decoration:none;
  color:#111;
  background:#fff;
  border:1px solid #ddd;
  transition:.3s;
}

/* LEFT GRADIENT LINE */
.fac-link::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  bottom:8px;
  width:6px;
  border-radius:8px;
  background:linear-gradient(180deg,#0b57d0,#6ebade); /* CHANGED */
  box-shadow:0 10px 20px rgba(110,186,222,.25);
}

/* icon color */
.fac-link i{
  color:#6ebade;
}

/* hover */
.fac-link:hover{
  background:#f2f9fd;
  transform:translateY(-2px);
  border-color:rgba(110,186,222,.45);
}

/* mobile */
@media(max-width:700px){

  .fac-links{
    grid-template-columns:1fr;
  }

}