/* ===== About Page Specific Styles ===== */

.page-header h2 {
  /* font-size: 2rem;        smaller than 2.5rem for balance */
  margin-bottom: 0.75rem;
}

.page-header p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 500;
}

/* General paragraph sizing */
.about-content p {
  margin-bottom: 1rem;
  font-size: 1rem;        /* consistent, not "medium" */
  font-weight: 500;
  line-height: 1.6;       /* improve readability */
}

.about-content {
  padding: 3rem 0;        /* reduced from 4rem for tighter layout */
}

.about-content .grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-content img {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  max-width: 90%;
}

/* Our Values */
.our-values {
  background-color: #f9f9f9;
  padding: 3rem 0;
  text-align: center;
}

.our-values img {
  margin-top: 1.5rem;
  border-radius: 12px;
  max-width: 600px;        /* reduced from 700px for better fit */
  width: 90%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Call to Action */
.call-to-action {
  background: linear-gradient(135deg, #4da6ff, #0073e6);
  color: #fff;
  padding: 2.5rem 1rem;    /* reduced padding */
  text-align: center;
  border-radius: 12px;
  margin: 3rem auto;
  width: 90%;
  max-width: 720px;        /* reduced from 800px */
}

.call-to-action h3 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.call-to-action .btn-primary {
  background-color: #fff;
  color: #0073e6;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 1rem;
}

.call-to-action .btn-primary:hover {
  background-color: #0073e6;
  color: #fff;
}

.about-content .bullets {
  margin: 0.5rem 0 1.25rem;
  padding-left: 1.1rem;
  line-height: 1.6;
  font-size: 1rem;
}
.about-content .bullets li { 
  margin: 0.3rem 0;
  font-size: 1rem;
}
.bullets {
  list-style-type: disc;  /* default circle bullets */
  padding-left: 1.5rem;   /* indent for bullets */
}






