.numbers-parent {
  background-color: var(--primary-blue-colour);
  padding: 1% 7% !important;
}

/* Card styling */
.number-card {
  padding: 10px 0;
  color: var(--white); /* Set text color to white */
}

/* Headings styling */
.number-card-content > div > h3 {
  font-size: 35px; /* Adjust font size for h3 */
  margin: 0; /* Keep the text aligned properly */
  color: var(--white); /* Ensure text is white */
}

/* Headings styling */
.number-card-content > div > h3 > span {
  font-size: 35px; /* Adjust font size for h3 */
  margin: 0; /* Keep the text aligned properly */
  color: var(--white); /* Ensure text is white */
}

/* Paragraph styling */
.number-card-content > div > p {
  font-size: 20px; /* Adjust font size for paragraph */
  font-weight: 400;
  margin: 0; /* Keep the text aligned properly */
  color: var(--white); /* Ensure text is white */
}

/* Flex container for content */
.number-card-content {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align content to the left */
  text-align: left; /* Ensure text is aligned left */
  gap: 20px; 
}

/* Image styling */
.number-card-img {
  height: 60px; /* Fixed height for consistency */
}

/* Responsive adjustments */
@media screen and (max-width: 700px) {
  .numbers-parent {
    /*flex-direction: column;*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .number-card-content {
    /*flex-direction: column;*/
    /*text-align: center;*/
    gap: 0px;
  }
  .number-card-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
  }
  .number-card-content > div > h3{
    font-size: 15px;
  }
  .number-card-content > div > h3 > span{
    font-size: 20px;
  }
  .number-card-content > div > p {
    font-size: 15px;
    line-height: 1;
  }
}

@media screen and (max-width: 400px){
    .number-card-content > div > h3 > span{
    font-size: 15px;
  }
  .number-card-content > div > p {
    font-size: 10px;
    line-height: 1;
  }
 .number-card-img {
    width: 35px;
    height: 35px;
  }
}
