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;
  background-color: #f5f6fa;
}

/* Profile image */
.profile-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid #0d6efd;
}

/* Service cards */
.service-card {
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.service-card .card-title {
  color: #2c3e50;
  font-weight: 600;
}

.service-card .card-text {
  font-size: 0.9rem;
}

/* Service icons */
.service-icon img {
  width: 64px;
  height: 64px;
  transition: transform 0.2s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
