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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.language-switcher {
    padding-top: 12px;
    padding-left: 10px;
}

.language-form {
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-button {
    border: 1px solid transparent;
    background: transparent;
    padding: 2px;
    border-radius: 50%;
    line-height: 1;
    cursor: pointer;
    opacity: 0.65;
    transition: all 0.2s ease;
}

    .language-button img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
    }

    .language-button:hover {
        opacity: 1;
        transform: translateY(-1px);
    }

    .language-button.active {
        opacity: 1;
        border-color: #00c6d7;
        box-shadow: 0 0 0 2px rgba(0, 198, 215, 0.18);
    }

.service-detail-card {
    margin-bottom: 35px;
    padding: 30px;
}

.service-detail-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

.service-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #00c6d7;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.service-detail-card h3 {
    margin-top: 0;
}

.service-detail-card h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-detail-card ul {
    padding-left: 18px;
}

.service-detail-card li {
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .service-detail-image {
        margin-bottom: 20px;
    }
}

