.about-img-container {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.about-section {
  background-color: white;
  padding: 3rem 2rem 0 2rem;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #131313;
}

.section-header {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
}

.section-header h2 {
  /*font-size: 2.5rem;*/
  font-size: 1.8rem;
  color: #0b4f6c;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.section-main p {
  color: #555;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding-left: 2.5rem;   /* This is only to minimize width for user's ease of readability */
}

.mandates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mandate-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.mandate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.icon-wrapper {
  font-size: 2.5rem;
  color: #01baef;
  margin-bottom: 20px;
}

.mandate-card h3 {
  font-size: 1.5rem;
  color: #0b4f6c;
  margin-bottom: 15px;
}

.mandate-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

.about-image {
    width: 100%; /* Makes the image fit its container */
    height: auto;
    border-radius: 8px; /* Smooth, rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft, cool shadow effect */
    margin-bottom: 0rem; /* Space between the image and the text */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .section-header h2 { font-size: 2rem; }
  .mandates-grid { grid-template-columns: 1fr; }

  .about-section {
    margin: 0 auto;
    padding: 2rem 2rem;
  }
}