/* ABOUT PAGE */
.about-page {
  padding: 80px 20px;
  background: #f0f1dd;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.about-header p {
  max-width: 750px;
  margin: 15px auto 0;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* SECTIONS */
.about-section {
  margin-bottom: 50px;
}

.about-section h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
  position: relative;
  padding-left: 12px;
}

.about-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 25px;
  background: #FFC107;
  border-radius: 4px;
}

.about-section p {
  color: #555;
  font-size: 15.5px;
  line-height: 1.8;
}

/* SERVICE CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.about-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.about-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.about-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* MISSION LIST */
.mission-list {
  margin-top: 15px;
  padding-left: 20px;
}

.mission-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
  position: relative;
  padding-left: 15px;
}

.mission-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FFC107;
  font-size: 14px;
}

/* FOOTER NOTE */
.about-footer {
  margin-top: 60px;
  text-align: center;
  padding: 30px;
  background: #495057;
  border-radius: 12px;
}

.about-footer p {
  color: #ffc107;
  font-size: 16px;
  max-width: 800px;
  margin: auto;
}
