html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.service-left {
    flex: 1 1 300px;
}

.service-right {
    flex: 1 1 300px;
    padding: 20px 15px;
    border-left: 4px solid darkorange;
    background-color: #fff4e5;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.why-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 15px;
}

    .why-images img {
        width: 100px;
        height: auto;
        border-radius: 6px;
        object-fit: cover;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    }

@media (min-width: 700px) {
    .service-left {
        flex: 1 1 45%;
    }

    

    .why-images {
        flex-wrap: nowrap;
    }

    .why-images img {
        flex: 1 1 30%;
    }
}