/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  color: #333333;
  background-color: #E5E5E5;
}

.page-about .hero-section {
  background: linear-gradient(135deg, #333333, #E5E5E5);
  padding: 80px 0;
  text-align: center;
}

.page-about .content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-about h1, .page-about h2 {
  color: #333333;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-about p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-about .about-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.page-about .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333333;
  color: #E5E5E5;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.page-about .btn:hover {
  background-color: #1a1a1a;
}