body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

.about-us-section {
  padding: 3rem 2rem;
  background: #fff;
  margin: 2rem auto;
  border-radius: 10px;
  max-width: 900px;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-title {
  font-size: 2rem;
  color: #1E88E5;
  margin-bottom: 2rem;
  text-align: center;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 1rem;
  text-align: center;
}

.ceo-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1rem auto;
  max-width: 700px;
  padding: 1rem;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.ceo-avatar-container {
  flex-shrink: 0;
  text-align: center;
}

.ceo-avatar {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.ceo-details {
  text-align: left;
  max-width: 300px;
}

.ceo-name {
  font-size: 1.5rem;
  color: #000; /* Changed to black */
  margin-bottom: 0.2rem;
}

.ceo-title {
  font-size: 1rem;
  color: #555;
}

.about-description,
.about-mission,
.about-closing {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

.meet-button-container {
  margin-top: 2rem;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background-color: #ffca28;
  color: #333;
  padding: 0.7rem 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #ffc107;
}

/* INFO BOXES */
.info-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 2rem;
}

.box {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: white;
  padding: 2rem;
  margin: 1rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.box:hover {
  transform: translateY(-5px);
}

.box img {
  width: 40px;
  margin-bottom: 1rem;
}

.box h3 {
  margin-bottom: 0.5rem;
  color: #000;
}

.box p {
  font-size: 0.95rem;
  color: #555;
}



