.for-full {
  width: 100%;
}
.quality-policy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  color: #0056b3;
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.header h1::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, #0056b3, #5cadff);
  bottom: -10px;
  left: 20%;
}

.header p {
  color: #555;
  font-size: 1.1rem;
}

.quality-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.quality-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 86, 179, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #0056b3;
}

.quality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.15);
}

.quality-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: #f0f7ff;
  border-radius: 50%;
  z-index: 0;
}

.quality-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0056b3;
  position: relative;
  z-index: 1;
}

.quality-card h3 {
  color: #0056b3;
  margin-bottom: 15px;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

.quality-card p {
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.mission-statement {
  background: linear-gradient(135deg, #0056b3, #5cadff);
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin: 50px 0;
  text-align: center;
}

.mission-statement h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mission-statement p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.quality-commitment {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 86, 179, 0.1);
}

.quality-commitment h2 {
  color: #0056b3;
  margin-bottom: 30px;
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
}

.quality-commitment h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, #0056b3, #5cadff);
  bottom: -10px;
  left: 20%;
}

.quality-pillars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.quality-pillar {
  background: #f0f7ff;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
}

.quality-pillar:hover {
  transform: scale(1.05);
}

.pillar-icon {
  font-size: 2rem;
  color: #0056b3;
  margin-bottom: 15px;
}

.quality-pillar h3 {
  color: #0056b3;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .quality-cards {
    grid-template-columns: 1fr;
  }

  .mission-statement {
    padding: 30px 20px;
  }

  .quality-pillars {
    flex-direction: column;
    align-items: center;
  }

  .quality-pillar {
    width: 100%;
    max-width: 300px;
  }
}

/* Icons from Font Awesome */
.fas,
.far {
  font-family: "Font Awesome";
}
