body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #fdfdfd;
    color: #333;
  }
  
  .hero-section {
    background: url('/assets/hero-images/profile-hero.jpg') center/cover no-repeat;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .middle-texts {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    color: white;
    border-radius: 10px;
  }
  
  .middle-texts h1 {
    font-size: 2rem;
    margin: 0;
  }
  
  section {
    padding: 2rem 4rem;
    max-width: 1000px;
    margin: auto;
  }
  
  h2 {
    color: #004b8d;
    margin-bottom: 0.5rem;
  }
  
  h3 {
    margin-top: 1rem;
    color: #007b5f;
  }
  
  #values div {
    margin-bottom: 1rem;
  }
  
  #chairman-word {
    background-color: #f0f8ff;
    padding: 2rem 4rem;
    border-left: 5px solid #004b8d;
    margin-top: 2rem;
  }
  
  #chairman-word h1 {
    color: #004b8d;
  }
  
  #name {
    margin-top: 1rem;
    text-align: right;
  }
  .members {
    padding: 3rem 1rem;
    background-color: #f7f9fc;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .section-header h1 {
    font-size: 2rem;
    color: #004b8d;
    margin: 0;
    border-bottom: 3px solid #004b8d;
    display: inline-block;
    padding-bottom: 0.5rem;
  }
  
  #members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .member-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1.5rem;
    width: 220px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  
  .member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .member-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  .member-card h1 {
    font-size: 1.1rem;
    color: #004b8d;
    margin: 0.5rem 0 0.3rem;
  }
  
  .member-card h2 {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
  }
  
    /* ==============================
ABOUT UJAMAA PROPERTIES SECTION
============================== */
#about-ujamaa {
  padding: 4rem 2rem;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  color: #392a76;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-highlights {
  list-style: none;
  padding: 0;
}

.about-highlights li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #392a76;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
