/* ==========================
   ABOUT US SECTION
=========================== */
.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  color: #004080;
  font-family: Arial, sans-serif;
}

/* ==========================
   SECTION TITLE UNDERLINE
========================== */
.section-title {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  color: #004080;
  margin-bottom: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #0078ff;
  border-radius: 2px;
}


.about-section .section-subtitle {
  font-size: 22px;
  margin-bottom: 20px;
  color: #0066cc;
}

.about-section .intro-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-content h3 {
  font-size: 20px;
  color: #004080;
  margin-top: 25px;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 30px;
}

.about-list li {
  background: #fff;
  border-left: 4px solid #004080;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .about-content {
    text-align: center;
  }

  .about-list li {
    text-align: left;
  }
}
