/* ================= QAC PAGE ================= */

/* HERO */
.qac-hero{
  
    background:url('../images/quality_lab.png') center/cover no-repeat;
}



.qac-hero::before{
   content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

.qac-hero-content{
 position:relative;
  z-index:2;
  width:100%;
  max-width:none;
  padding:0 40px;
  display:flex;
  align-items:flex-end;
  gap:40px;
}

.qac-hero-content h1{
  font-size:84px;
  font-weight:800;
  color:#fff;
  font-style: italic;
  margin-bottom: 10px;
  letter-spacing:1px;
  white-space:nowrap;
}

.qac-hero-content p{
    font-size:18px;
  color:rgba(255,255,255,0.85);
  line-height:1.4;
  max-width:420px;
  margin-bottom:40px;
}


/* MAIN CONTENT */
.qac-section{
  padding:100px 0;
}

.qac-container{
  width:92%;
  max-width:1200px;
  margin:auto;
}

.qac-title{
  color:#076FD2;
  font-size:28px;
  margin-bottom:20px;
}

.qac-text{
  color:#444;
  line-height:1.7;
  margin-bottom:20px;
}

/* LIST */
.qac-list{
  margin-top:20px;
}

.qac-list li{
  list-style:none;
  margin-bottom:12px;
  position:relative;
  padding-left:18px;
}

.qac-list li::before{
  content:"-";
  position:absolute;
  left:0;
  color:#076FD2;
}


/* CERTIFICATIONS */
.qac-cert{
  background:#f5f7fa;
  padding:100px 0;
  text-align:center;
}

.qac-cert p{
  max-width:800px;
  margin:20px auto;
  line-height:1.7;
}


/* EQUIPMENT GRID */
.qac-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:40px;
}

.qac-card{
  background:#CDE6FB;
  padding:18px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.qac-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.qac-card h4{
  font-size:14px;
  color:#333;
}