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;
}

.navbar-brand {
  font-weight: 700;
}

.carousel-custom {
  position: relative;
  overflow: hidden;
  background: #0d6efd;
}

.carousel-custom-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-custom-slide {
  flex: 0 0 100%;
}

.carousel-custom-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel-custom-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-custom-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-custom-dots span.active {
  background: #ffffff;
}

.carousel-custom-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-custom-control:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-custom-control.prev {
  left: 16px;
}

.carousel-custom-control.next {
  right: 16px;
}

.footer {
  font-size: 0.9rem;
}