
/* about.css */
body {
  font-family: 'Cairo', sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.8;
}

.about-container {
  max-width: 1000px;
  margin: 80px auto;
  padding: 20px;
}

.about-container h1 {
  text-align: center;
  color: #0288d1;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
  font-size: 18px;
}

.about-section {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 20px 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.about-section h2 {
  color: #0288d1;
  margin-bottom: 10px;
}

.about-section p {
  color: #333;
}

.about-section ul {
  list-style: none;
  padding-right: 20px;
}

.about-section ul li {
  position: relative;
  margin-bottom: 8px;
  padding-right: 18px;
}

.about-section ul li::before {
  content: "•";
  color: #0288d1;
  position: absolute;
  right: 0;
  font-size: 20px;
  line-height: 1;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.values span {
  background-color: #0288d1;
  color: white;
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
}

.about-section.final {
  text-align: center;
  background-color: #e3f2fd;
  color: #01579b;
  font-size: 17px;
  padding: 25px;
}

@media (max-width: 768px) {
  .about-container {
    padding: 15px;
  }

  .values {
    justify-content: center;
  }
}


