.body-container{
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #fff;
  color: #000;   
}

.container-about {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.content h1 {
  font-size: 3.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: EB Garamond;
  color: #000;
}

.content h1 span {
  display: inline-block;
}

.content p {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: #333;
}

.image-container {
  display: flex;
  justify-content: center;
}

.image-container img {
 /* width: 100%; */
  max-width: 900px;
  border-radius: 15px;
 /* border-bottom: 8px solid #f9b233;  yellow underline */
}

/**2nd sec**/
/* Mission Section */
.mission-section-about {
  background-color: #fff;
  padding: 60px 100px;
}

.mission-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.mission-left h2 {
  font-size: 1.5rem;
  font-family: 'Georgia', serif;
}

.mission-right {
  flex: 1;
  max-width: 600px;
}

.mission-right p {
  font-size: 1rem;
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}

.donate-btn {
  background-color: #f9b233;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.donate-btn:hover {
  background-color: #e89e1d;
}

/* Race & Equity Section */
.equity-section-about {
  background-color: #111;
  color: #fff;
  padding: 80px 20px;
}

.equity-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.equity-text {
  flex: 1;
  min-width: 300px;
}

.equity-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.equity-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
  font-family: Arial, sans-serif;
}

.equity-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
 /* border-bottom: 8px solid #f9b233; */
}

/**3rd sec**/
/* Areas of Focus Section */
.areas-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.areas-header h2 {
  font-size: 2rem;
  font-family: 'Georgia', serif;
  margin-bottom: 10px;
  color: #222;
}

.areas-header p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1rem;
  color: #555;
  font-family: Arial, sans-serif;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.area-box {
  background-color: #eaeaea;
  border-radius: 12px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.area-box:hover {
  background-color: #dcdcdc;
}
