.who-we-are-section {
  padding: 40px 20px;
  background-color: #f7f7f7; /* Light background for contrast */
  color: #333333; /* Darker text for readability */
}

.who-we-are-section .who-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.who-we-are-section h2 {
  font-size: 36px;
  color: #1E3A61; /* Matching the button color for consistency */
  margin-bottom: 20px;
}

.who-we-are-section p {
  font-size: 18px;
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .who-we-are-section {
    padding: 60px 20px;
  }

  .who-we-are-section h2 {
    font-size: 30px;
  }

  .who-we-are-section p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .who-we-are-section {
    padding: 40px 20px;
  }

  .who-we-are-section h2 {
    font-size: 24px;
  }

  .who-we-are-section p {
    font-size: 14px;
  }
}
