.research-pillars .card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  max-width: 280px;
  height: 650px
}

.research-pillars .card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 10px auto;
}

.research-pillars .card h2{
  font-size: 25px;
  font-weight: 600;
	color: #00B040;
  margin: 20px;
	justify-content: center !important;
	align-items: center !important; 
}

.research-pillars .card p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 16px 16px;
  line-height: 1.5;
}

.research-pillars .card .card-buttons {
  display: flex;
  gap: 8px;
  padding: 0px 16px 10px;
}

.research-pillars .card .btn-small {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #222;
  transition: background-color 0.2s ease;
}

.research-pillars .card .btn-small:hover {
  background-color: #e0e0e0;
}

.research-pillars .card .btn-research {
  background-color: #000E2F;
  color: #fff;
}

.research-pillars .card .btn-research:hover {
  background-color: #1d4ed8;
}

.research-pillars .card .btn-fact {
  background-color: #A2AAAD;
  color: #222;
}






.fast-facts {
  margin: 20px;
  background: transparent; /* removes any background */
}

.fast-facts h2 {
  text-align: center;
  margin: 20px 0px 10px;
  color: #000E2F;
}

.numbers-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;                /* Reduced spacing between circles */
  overflow-x: auto;         /* Allows scrolling on small screens */
}

.stat-circle {
  width: 200px;
  height: 200px;
  background: #00B040;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
	padding-bottom: 10px;
  box-sizing: border-box;
  box-shadow: none;         /* Removes any shadow */
}

.stat-circle .number {
  font-size: 50px;
  font-weight: 700;
}

.stat-circle .label {
  font-size: 16px;
	background: transparent !important;
	line-height: 1.2;
	margin-top: 0px !important; 
}

.stat-circle .source {
  margin-bottom: 26px;          /* Reduced spacing */
  font-size: 12px;
  font-style: italic;
  opacity: 0.9;
}