.btn-check-services {
    background-color: #ebf2ff;
    color: #0b1c39;
    font-family: 'Arial Narrow', sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-check-services::before,
.btn-check-services::after,
.btn-check-services span::before,
.btn-check-services span::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: #2E5EA2;
    transition: all 0.3s ease;
}

.btn-check-services::before {
    top: -2px;
    left: -2px;
    border-top: 2px solid #2E5EA2;
    border-left: 2px solid #2E5EA2;
    border-top-left-radius: 6px;
}

.btn-check-services::after {
    top: -2px;
    right: -2px;
    border-top: 2px solid #2E5EA2;
    border-right: 2px solid #2E5EA2;
    border-top-right-radius: 6px;
}

.btn-check-services span::before {
    bottom: -2px;
    left: -2px;
    border-bottom: 2px solid #2E5EA2;
    border-left: 2px solid #2E5EA2;
    border-bottom-left-radius: 6px;
}

.btn-check-services span::after {
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid #2E5EA2;
    border-right: 2px solid #2E5EA2;
    border-bottom-right-radius: 6px;
}

.btn-check-services:hover {
    background-color: #e5eeff;
    transform: translateY(-2px);
}


.btn-check-services-dark {
  background-color: #0b1c39;
  color: #ffffff;
  font-family: 'Arial Narrow', sans-serif;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-check-services-dark::before,
.btn-check-services-dark::after,
.btn-check-services-dark span::before,
.btn-check-services-dark span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-color: #ffffff;
  transition: all 0.3s ease;
}

.btn-check-services-dark::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-top-left-radius: 6px;
}

.btn-check-services-dark::after {
  top: -2px;
  right: -2px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  border-top-right-radius: 6px;
}

.btn-check-services-dark span::before {
  bottom: -2px;
  left: -2px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-bottom-left-radius: 6px;
}

.btn-check-services-dark span::after {
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  border-bottom-right-radius: 6px;
}

.btn-check-services-dark:hover {
  background-color: #111f3f;
  transform: translateY(-2px);
}


.white-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.white-bullet img {
  width: 70px;
  height: auto;
  object-fit: contain;
}