/* ================= ABOUT US SECTION ================= */
.about-section {
  background-color: #ffffff;
  padding: 70px 20px;
}

.about-container {
  max-width: 1000px;
  margin: auto;
}

/* Blocks */
.about-block {
  margin-bottom: 50px;
}

/* Headings */
.about-block h2 {
  font-size: 32px;
  font-weight: 800;
}

.about-block h3 {
  font-size: 24px;
  font-weight: 700;
}

/* Yellow accent line */
.accent-line {
  width: 80px;
  height: 4px;
  background-color: #f2b705;
  margin: 10px 0 20px;
}

.accent-line.small {
  width: 60px;
}

/* Text */
.about-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-highlight {
  font-size: 17px;
  background: #fff9e6;
  padding: 15px 20px;
  border-left: 5px solid #f2b705;
}

.about-points {
  list-style: none;
  padding-left: 0;
}

.about-points li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
}

.about-points li::before {
  content: "✔";
  color: #f2b705;
  position: absolute;
  left: 0;
  top: 0;
}

/* Closing line */
.about-closing {
  margin-top: 20px;
  font-weight: 600;
}

/* ================= SMOOTH TRANSITION ================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  .about-block h2 {
    font-size: 26px;
  }

  .about-block h3 {
    font-size: 20px;
  }

  .about-section p {
    font-size: 15px;
  }
}
