/* ========== About Section ========== */
  .about {
    padding: 60px 0;
  }

  .about h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
  }

  .about ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
    line-height: 1.8;
  }

/* =======================
   ABOUT PAGE STYLES
   Enlite Electrical Theme
======================= */

.about-page {
  padding: 4rem 0;
  background-color: #fff;
  color: #222;
}

/* Title & intro */
.about-page h1 {
  text-align: center;
  color: #003366;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about-page p {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
  color: #333;
}

/* About Grid Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-grid div {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.about-grid h2 {
  color: #003366;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-grid p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

/* Accent underline on headings */
.about-grid h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.about-grid h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.about-grid div:hover h2::after {
  width: 100%;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-page {
    padding: 3rem 1rem;
  }

  .about-grid div {
    padding: 1.5rem;
  }
}
