/* General Layout Padding */
.layout_padding {
  padding: 60px 0;
}

/* About Page Title */
.about_taital {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff6600;
  margin-bottom: 15px;
}

.about_taital::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #ff6600;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Intro Small Text */
.intro_text {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  margin-top: 10px;
}

/* Section Headings */
.slightly_text {
  font-size: 26px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Paragraph Text */
.lorem_text {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  text-align: justify;
}

/* Background for alternate sections */
.bg-light {
  background-color: #f8f9fa;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about_taital {
    font-size: 30px;
  }
  .slightly_text {
    font-size: 22px;
  }
  .lorem_text {
    font-size: 15px;
  }
  .layout_padding {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .about_taital {
    font-size: 26px;
  }
  .slightly_text {
    font-size: 20px;
  }
  .lorem_text {
    font-size: 14px;
  }
}
