* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #111827;
  background: #ffffff;
}

.main-content {
  display: block;
  min-height: calc(100vh - 200px);
}

button {
  border: none;
  background: transparent;
}

a {
  text-decoration: none;
}

.rotate-180 {
  transform: rotate(180deg);
}

.max-h-0 {
  max-height: 0;
}

.max-h-96 {
  max-height: 24rem;
}

.header {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header a {
  text-decoration: none;
}
.header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .header__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header__container {
    padding: 0 2rem;
  }
}
.header__inner {
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 1rem 0;
}
@media (min-width: 1024px) {
  .header__inner {
    height: 9.5rem;
  }
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0.75rem 0;
  position: relative;
  z-index: 50;
}
.header__bottom {
  display: none;
}
@media (min-width: 1024px) {
  .header__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding: 0.75rem 2rem;
    background: #dc2626;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 40;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 4rem;
}
.header__selectors {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 2rem;
}
@media (max-width: 1023px) {
  .header__selectors {
    display: none;
  }
}
.header__language {
  position: relative;
}
.header__language-button {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  color: #374151;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
}
.header__language-button:hover {
  border-color: #dc2626;
  color: #dc2626;
}
.header__language-button {
  transition: all 0.3s ease;
}
.header__language-button i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  transform-origin: 50% 50%;
  display: inline-block;
  height: auto;
  width: auto;
}
.header__language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header__language-dropdown.open {
  max-height: 20rem;
  opacity: 1;
  visibility: visible;
}
.header__language-dropdown li {
  list-style: none;
}
.header__language-dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
}
.header__language-dropdown li a:hover {
  background: #fef2f2;
  color: #dc2626;
}
.header__language-dropdown li a {
  transition: all 0.3s ease;
}
.header__city {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.header__city-map {
  height: 1rem;
  width: 1rem;
}
.header__city b {
  font-weight: 600;
  color: #374151;
}
.header__city-toggle {
  color: #dc2626;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}
.header__city-toggle:hover {
  color: #b91c1c;
}
.header__city-toggle {
  transition: all 0.3s ease;
}
.header__city-arrow {
  height: auto;
  width: auto;
  transition: transform 0.3s ease;
  transform-origin: 50% 50%;
  display: inline-block;
  font-size: 0.75rem;
}
.header__city-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 12rem;
  background: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header__city-dropdown.open {
  max-height: 20rem;
  opacity: 1;
  visibility: visible;
}
.header__city-dropdown li {
  list-style: none;
}
.header__city-dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
}
.header__city-dropdown li a:hover {
  background: #fef2f2;
  color: #dc2626;
}
.header__city-dropdown li a {
  transition: all 0.3s ease;
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
  }
}
.header__nav-item {
  color: #ffffff;
  font-size: 1.125rem;
}
.header__nav-item:hover {
  color: #ffffff;
  opacity: 0.8;
}
.header__nav-item {
  transition: all 0.3s ease;
}
.header__nav-dropdown {
  position: relative;
}
.header__nav-dropdown-button {
  color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
}
.header__nav-dropdown-button:hover {
  color: #ffffff;
  opacity: 0.8;
}
.header__nav-dropdown-button {
  transition: all 0.3s ease;
}
.header__nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header__nav-dropdown:hover .header__nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.header__nav-dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
}
.header__nav-dropdown-item:hover {
  background: #fef2f2;
  color: #dc2626;
}
.header__nav-dropdown-item {
  transition: all 0.3s ease;
}
.header__actions {
  display: none;
  position: absolute;
  right: 0;
}
@media (min-width: 1024px) {
  .header__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}
.header__actions-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__actions-phone-icon {
  height: 1.25rem;
  width: 1.25rem;
  color: #dc2626;
}
.header__actions-phone-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}
.header__actions-phone-link:hover {
  color: #dc2626;
}
.header__actions-phone-link {
  transition: all 0.3s ease;
}
.header__actions-phone-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0.25rem 0 0 0;
}
.header__actions-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__actions-social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.header__actions-social-link--whatsapp {
  background: #25d366;
  color: #ffffff;
}
.header__actions-social-link--whatsapp:hover {
  opacity: 0.9;
}
.header__actions-social-link--instagram {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}
.header__actions-social-link--instagram:hover {
  opacity: 0.9;
}
.header__actions-social-link--youtube {
  background: #ff0000;
  color: #ffffff;
}
.header__actions-social-link--youtube:hover {
  opacity: 0.9;
}
.header__actions-social-link i {
  font-size: 0.875rem;
}
.header__actions-button {
  background: #dc2626;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
}
.header__actions-button:hover, .header__actions-button:focus {
  color: #ffffff;
  background: #b91c1c;
}
.header__actions-button {
  transition: all 0.3s ease;
}
.header__actions-button a {
  color: #ffffff;
}
.header__actions-button a:hover {
  color: #ffffff;
}
.header__actions-icon {
  color: #374151;
}
.header__actions-icon:hover {
  color: #dc2626;
}
.header__actions-icon {
  transition: all 0.3s ease;
}
.header__actions-icon svg {
  height: 1.5rem;
  width: 1.5rem;
}
.header .header__registration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  cursor: pointer;
}
.header .header__registration:hover {
  color: #dc2626;
}
.header .header__registration {
  transition: all 0.3s ease;
}
.header .header__registration i {
  height: 1.5rem;
  width: 1.5rem;
  font-size: 1.5rem;
}
.header .header__registration-link {
  opacity: 60%;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  margin: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.header .header__registration-link:hover {
  opacity: 80%;
}
.header .header__registration-link {
  transition: all 0.3s ease;
}
.header__city-mobile {
  position: relative;
}
.header__city-mobile .header__actions-icon {
  position: relative;
}
.header__city-mobile-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__city-mobile-dropdown.active {
  opacity: 1;
  visibility: visible;
}
.header__city-mobile-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.header__city-mobile-dropdown-header b {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.header__city-mobile-dropdown-list {
  background: #ffffff;
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
}
.header__city-mobile-dropdown-list li {
  list-style: none;
  border-bottom: 1px solid #f3f4f6;
}
.header__city-mobile-dropdown-list li:last-child {
  border-bottom: none;
}
.header__city-mobile-dropdown-list li a {
  display: block;
  padding: 1rem;
  color: #374151;
  text-decoration: none;
  font-size: 1rem;
}
.header__city-mobile-dropdown-list li a:hover {
  background: #fef2f2;
  color: #dc2626;
}
.header__city-mobile-dropdown-list li a {
  transition: all 0.3s ease;
}
.header__city-mobile-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1.25rem;
  cursor: pointer;
}
.header__city-mobile-close:hover {
  color: #dc2626;
}
.header__city-mobile-close {
  transition: all 0.3s ease;
}
.header__mobile-menu {
  display: block;
}
@media (min-width: 1024px) {
  .header__mobile-menu {
    display: none;
  }
}
.header__mobile-menu-button {
  color: #374151;
  display: block;
}
@media (min-width: 1024px) {
  .header__mobile-menu-button {
    display: none;
  }
}
.header__mobile-menu-button:hover {
  color: #dc2626;
}
.header__mobile-menu-button {
  transition: all 0.3s ease;
}
.header__mobile-menu-button svg {
  height: 1.5rem;
  width: 1.5rem;
}
.header__mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.header__mobile-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.active .header__mobile-menu-content {
  transform: translateX(0);
}
.header__mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.header__mobile-menu-close {
  background: none;
  border: none;
  color: #374151;
  cursor: pointer;
}
.header__mobile-menu-close:hover {
  color: #dc2626;
}
.header__mobile-menu-close {
  transition: all 0.3s ease;
}
.header__mobile-menu-nav {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}
.header__mobile-menu-item {
  display: block;
  padding: 1rem 0;
  color: #374151;
  font-weight: 500;
  text-decoration: none;
}
.header__mobile-menu-item:hover {
  color: #dc2626;
}
.header__mobile-menu-item {
  transition: all 0.3s ease;
}
.header__mobile-menu-dropdown-button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 0;
  color: #374151;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__mobile-menu-dropdown-button:hover {
  color: #dc2626;
}
.header__mobile-menu-dropdown-button {
  transition: all 0.3s ease;
}
.header__mobile-menu-dropdown-icon {
  transition: transform 0.3s ease;
}
.header__mobile-menu-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9fafb;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}
.header__mobile-menu-dropdown.active .header__mobile-menu-dropdown-menu {
  max-height: 500px;
}
.header__mobile-menu-dropdown.active .header__mobile-menu-dropdown-icon {
  transform: rotate(180deg);
}
.header__mobile-menu-dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.875rem;
}
.header__mobile-menu-dropdown-item:hover {
  color: #dc2626;
  background: #fef2f2;
}
.header__mobile-menu-dropdown-item {
  transition: all 0.3s ease;
}
.header__mobile-menu-actions {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
}
.header__mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.header__mobile-menu-phone-icon {
  height: 1.25rem;
  width: 1.25rem;
  color: #dc2626;
}
.header__mobile-menu-phone-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}
.header__mobile-menu-phone-link:hover {
  color: #dc2626;
}
.header__mobile-menu-phone-link {
  transition: all 0.3s ease;
}
.header__mobile-menu-phone-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0.25rem 0 0 0;
}
.header__mobile-menu-button-action {
  width: 100%;
  background: #dc2626;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.header__mobile-menu-button-action:hover {
  background: #b91c1c;
}
.header__mobile-menu-button-action {
  transition: all 0.3s ease;
}

.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.login-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.login-modal {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  max-width: 28rem;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
.login-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.login-modal-header-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.login-modal-header-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1.25rem;
  cursor: pointer;
}
.login-modal-header-close:hover {
  color: #dc2626;
}
.login-modal-header-close {
  transition: all 0.3s ease;
}
.login-modal-body {
  padding: 1.5rem;
}

.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  max-width: 50rem;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.booking-modal-header-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.booking-modal-header-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1.25rem;
  cursor: pointer;
}
.booking-modal-header-close:hover {
  color: #dc2626;
}
.booking-modal-header-close {
  transition: all 0.3s ease;
}
.booking-modal-body {
  padding: 1.5rem;
}

.booking-section__container {
  max-width: 100%;
}
.booking-section__warning {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.booking-section__warning p {
  margin: 0;
  color: #92400e;
  font-weight: 500;
}
.booking-section__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-section__field-group {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .booking-section__field-group {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.booking-section__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.booking-section__input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  color: #111827;
}
.booking-section__input:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.booking-section__input {
  transition: all 0.3s ease;
}
.booking-section__select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  color: #111827;
  background: #ffffff;
  cursor: pointer;
}
.booking-section__select:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.booking-section__select {
  transition: all 0.3s ease;
}
.booking-section__select-icon, .booking-section__input-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}
.booking-section__confirmation {
  background: #d1fae5;
  border: 1px solid #10b981;
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
}
.booking-section__confirmation p {
  margin: 0;
  color: #065f46;
  font-weight: 500;
}
.booking-section__submit {
  width: 100%;
  background: #dc2626;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.booking-section__submit:hover {
  background: #b91c1c;
}
.booking-section__submit {
  transition: all 0.3s ease;
}

.login-form-group {
  margin-bottom: 1.5rem;
}
.login-form-group:last-child {
  margin-bottom: 0;
}
.login-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.login-form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  color: #111827;
}
.login-form-input:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.login-form-input {
  transition: all 0.3s ease;
}
.login-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.875rem;
  color: #374151;
}
.login-form-checkbox {
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.login-form-checkbox-text {
  line-height: 1.4;
}
.login-form-submit {
  width: 100%;
  background: #dc2626;
  color: #ffffff;
  padding: 0.75rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.login-form-submit:hover {
  background: #b91c1c;
}
.login-form-submit {
  transition: all 0.3s ease;
}

.patient-profile {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .patient-profile {
    padding: 4rem 0;
  }
}
.patient-profile__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .patient-profile__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .patient-profile__container {
    padding: 0 2rem;
  }
}
.patient-profile__header {
  text-align: center;
  margin-bottom: 3rem;
}
.patient-profile__title {
  font-size: 2.25rem;
}
@media (min-width: 1024px) {
  .patient-profile__title {
    font-size: 3rem;
  }
}
.patient-profile__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.patient-profile__subtitle {
  font-size: 1.25rem;
  color: #4b5563;
}
.patient-profile__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .patient-profile__grid {
    grid-template-columns: 1fr 2fr;
  }
}
@media (min-width: 1024px) {
  .patient-profile__sidebar {
    grid-column: 1;
  }
}
@media (min-width: 1024px) {
  .patient-profile__content {
    grid-column: 2;
  }
}
.patient-profile__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.patient-profile__card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}
.patient-profile__avatar {
  width: 6rem;
  height: 6rem;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.patient-profile__avatar i {
  font-size: 3rem;
  color: #dc2626;
}
.patient-profile__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.patient-profile__role {
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.patient-profile__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.patient-profile__info-item {
  display: flex;
  align-items: center;
}
.patient-profile__info-item i {
  height: 1.25rem;
  width: 1.25rem;
  color: #dc2626;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.patient-profile__info-item span {
  color: #374151;
}
.patient-profile__edit-button {
  width: 100%;
  background: #dc2626;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 2rem;
}
.patient-profile__edit-button:hover {
  background: #b91c1c;
}
.patient-profile__edit-button {
  transition: all 0.3s ease;
}
.patient-profile__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}
.patient-profile__appointments, .patient-profile__history {
  margin-bottom: 2rem;
}
.patient-profile__appointments:last-child, .patient-profile__history:last-child {
  margin-bottom: 0;
}
.patient-profile__appointment, .patient-profile__record {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.patient-profile__appointment:last-child, .patient-profile__record:last-child {
  margin-bottom: 0;
}
.patient-profile__appointment-header, .patient-profile__record-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.patient-profile__appointment-title, .patient-profile__record-title {
  font-weight: 600;
  color: #111827;
}
.patient-profile__status {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.patient-profile__status--scheduled {
  background: #fee2e2;
  color: #dc2626;
}
.patient-profile__status--confirmed {
  background: #dbeafe;
  color: #2563eb;
}
.patient-profile__status--completed {
  background: #dcfce7;
  color: #16a34a;
}
.patient-profile__appointment-meta, .patient-profile__record-meta {
  display: flex;
  align-items: center;
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.patient-profile__appointment-meta i, .patient-profile__record-meta i {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}
.patient-profile__record-description {
  color: #4b5563;
  font-size: 0.875rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url("/img/banner.jpg") center/cover no-repeat, linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .hero {
    padding: 2rem 0;
  }
}
@media (max-width: 1023px) {
  .hero {
    background-image: url("/img/banner-m.jpg");
    background-size: cover;
    background-position: center;
    min-height: 80vh;
  }
}
.hero {
  overflow: hidden;
}
.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.333%;
  height: 100%;
  opacity: 0.1;
}
.hero__background-element {
  position: absolute;
  top: 5rem;
  right: 5rem;
  width: 16rem;
  height: 16rem;
  background: #dc2626;
  border-radius: 50%;
  filter: blur(3rem);
}
.hero__background-alt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33.333%;
  height: 100%;
  opacity: 0.1;
}
.hero__background-alt-element {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  width: 16rem;
  height: 16rem;
  background: #4b5563;
  border-radius: 50%;
  filter: blur(3rem);
}
.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .hero__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__container {
    padding: 0 2rem;
  }
}
.hero__container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: inherit;
}
.hero__content {
  width: 50%;
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .hero__content {
    width: 100%;
  }
}
.hero__title {
  font-size: 2.5rem;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
.hero__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 65px;
}
.hero__title-highlight {
  color: #dc2626;
}
.hero__subtitle {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .hero__subtitle {
    font-size: 1.875rem;
  }
}
.hero__subtitle {
  color: #4b5563;
  margin-bottom: 2rem;
}
.hero__search {
  max-width: 32rem;
  margin: 0 0 3rem;
}
.hero__search-form {
  position: relative;
}
.hero__search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  border-radius: 2rem;
  border: 2px solid #e5e7eb;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.hero__search-input:focus {
  border-color: #dc2626;
  outline: none;
}
.hero__search-input {
  transition: all 0.3s ease;
}
.hero__search-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #dc2626;
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 50%;
  border: none;
}
.hero__search-button:hover {
  background: #b91c1c;
}
.hero__search-button {
  transition: all 0.3s ease;
}
.hero__search-button svg {
  height: 1.25rem;
  width: 1.25rem;
}
.hero__services {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}
.hero__services-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}
.hero__services-item:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  background: #fef2f2;
}
.hero__services-item {
  transition: all 0.3s ease;
}
.hero__services-item-icon {
  font-size: 1.5rem;
}
.hero__services-item-text {
  font-weight: 500;
  color: #374151;
}
.hero__services-item-text:hover {
  color: #dc2626;
}
.hero__services-item-text {
  transition: all 0.3s ease;
}
.hero__social {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__social-link--whatsapp {
  background: #25d366;
  color: #ffffff;
}
.hero__social-link--whatsapp:hover {
  opacity: 0.9;
}
.hero__social-link--instagram {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}
.hero__social-link--instagram:hover {
  opacity: 0.9;
}
.hero__social-link--youtube {
  background: #ff0000;
  color: #ffffff;
}
.hero__social-link--youtube:hover {
  opacity: 0.9;
}
.hero__social-link {
  transition: all 0.3s ease;
}
.hero__social-link svg {
  width: 1.5rem;
  height: 1.5rem;
}

.statistics {
  position: relative;
  background: linear-gradient(90deg, #f9fafb 0%, #fef2f2 100%);
}
.statistics__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .statistics__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .statistics__container {
    padding: 0 2rem;
  }
}
.statistics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.statistics__item {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.statistics__item:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.statistics__item {
  transition: all 0.3s ease;
}
.statistics__item-number {
  font-size: 3rem;
}
@media (min-width: 1024px) {
  .statistics__item-number {
    font-size: 3.75rem;
  }
}
.statistics__item-number {
  font-weight: 700;
  color: #dc2626;
}
.statistics__item-text {
  margin-top: 1rem;
  color: #4b5563;
  font-weight: 500;
}

.mission {
  padding: 4rem 0;
  background: #ffffff;
}
.mission__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.mission__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #111827;
}
.mission__title-highlight {
  color: #e11d48;
}
.mission__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .mission__grid {
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .mission__image {
    grid-column: 1;
  }
}
.mission__image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.mission__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mission__image img:hover {
  transform: scale(1.1);
}
.mission__image img {
  transition: all 0.3s ease;
}
.mission__link {
  padding: 0.75rem 1.5rem;
  background: #f3f4f6;
  color: #374151;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.mission__link:hover {
  background: #dc2626;
  color: #ffffff;
}
.mission__content {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}
.mission__content-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}
.mission__content-text {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.mission__lists {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .mission__lists {
    grid-template-columns: 1fr 1fr;
  }
}
.mission__list-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}
.mission__list ul {
  list-style: none;
  padding: 0;
}
.mission__list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  color: #4b5563;
}
.mission__list ul li i {
  color: #e11d48;
  margin-right: 0.6rem;
  margin-top: 0.2rem;
}

.benefits {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .benefits {
    padding: 4rem 0;
  }
}
.benefits {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}
.benefits__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .benefits__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .benefits__container {
    padding: 0 2rem;
  }
}
.benefits__header {
  text-align: center;
  margin-bottom: 4rem;
}
.benefits__title {
  font-size: 1.875rem;
}
@media (min-width: 1024px) {
  .benefits__title {
    font-size: 2.25rem;
  }
}
.benefits__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.benefits__title-highlight {
  color: #dc2626;
}
.benefits__subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
}
.benefits__grid {
  display: grid;
}
@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.benefits__grid {
  gap: 2rem;
}
.benefits__item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}
.benefits__item:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}
.benefits__item {
  transition: all 0.3s ease;
}
.benefits__icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}
.benefits__icon i {
  font-size: 2rem;
  color: #dc2626;
}
.benefits__icon svg {
  height: 2rem;
  width: 2rem;
  color: #dc2626;
}
.benefits__icon:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
  transform: translateY(-0.125rem);
}
.benefits__icon:hover i, .benefits__icon:hover svg {
  color: #ffffff;
}
.benefits__icon {
  transition: all 0.3s ease;
}
.benefits__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}
.benefits__description {
  color: #4b5563;
  line-height: 1.6;
}

.departments {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .departments {
    padding: 4rem 0;
  }
}
.departments {
  background: #f9fafb;
}
.departments__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .departments__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .departments__container {
    padding: 0 2rem;
  }
}
.departments__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.departments__title {
  font-size: 1.875rem;
}
@media (min-width: 1024px) {
  .departments__title {
    font-size: 2.25rem;
  }
}
.departments__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0;
}
.departments__controls {
  display: flex;
  gap: 1rem;
}
@media (max-width: 639px) {
  .departments__controls {
    gap: 0.5rem;
  }
}
.departments__controls-button {
  padding: 0.75rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: none;
  color: #dc2626;
}
.departments__controls-button:hover {
  background: #fef2f2;
}
.departments__controls-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.departments__controls-button {
  transition: all 0.3s ease;
}
.departments__slider {
  position: relative;
  overflow: hidden;
}
.departments__slider-container {
  display: flex;
  transition: transform 0.5s ease-out;
  padding-bottom: 50px;
}
.departments__slider-item {
  width: 100%;
  flex-shrink: 0;
  padding: 0 0.75rem;
}
@media (min-width: 768px) {
  .departments__slider-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .departments__slider-item {
    width: 25%;
  }
}
.departments__slider-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.departments__slider-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.departments__slider-card {
  transition: all 0.3s ease;
}
.departments__slider-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.departments__slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.departments__slider-image img:hover {
  transform: scale(1.1);
}
.departments__slider-image img {
  transition: all 0.3s ease;
}
.departments__slider-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in oklab, black 60%, transparent) 0%, transparent 100%);
  pointer-events: none;
}
.departments__slider-image-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.departments__slider-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.departments__slider-description {
  color: #4b5563;
  font-size: 0.875rem;
  flex: 1;
}
.departments__slider-description:hover {
  color: #dc2626;
}
.departments__slider-description {
  transition: all 0.3s ease;
}
.departments__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .departments__dots {
    display: none;
  }
}
.departments__dots-dot {
  height: 0.5rem;
  border-radius: 9999px;
  background: #d1d5db;
  transition: all 0.3s ease;
}
.departments__dots-dot--active {
  width: 2rem;
  background: #dc2626;
}
.departments__dots-dot--inactive {
  width: 0.5rem;
}
.departments__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .departments__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .departments__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .departments__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.departments__card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.departments__card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.departments__card-image-container {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.departments__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.departments__card-image:hover {
  transform: scale(1.1);
}
.departments__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in oklab, black 60%, transparent) 0%, transparent 100%);
  pointer-events: none;
}
.departments__card-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.departments__card-content {
  padding: 1.5rem;
}
.departments__card-description {
  color: #4b5563;
  font-size: 0.875rem;
}

.departments-nav {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .departments-nav {
    padding: 6rem 0;
  }
}
.departments-nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .departments-nav__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .departments-nav__container {
    padding: 0 2rem;
  }
}
.departments-nav__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .departments-nav__title {
    font-size: 3rem;
  }
}
.departments-nav__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.departments-nav__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .departments-nav__menu {
    gap: 1.5rem;
  }
}
.departments-nav__link {
  padding: 0.75rem 1.5rem;
  background: #f3f4f6;
  color: #374151;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.departments-nav__link:hover {
  background: #dc2626;
  color: #ffffff;
}

.service-detail {
  padding: 4rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .service-detail {
    padding: 6rem 0;
  }
}
.service-detail:nth-child(even) {
  background: #ffffff;
}
.service-detail__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .service-detail__container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 640px) {
  .service-detail__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .service-detail__container {
    padding: 0 2rem;
  }
}
.service-detail__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-detail__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .service-detail__title {
    font-size: 2.25rem;
  }
}
.service-detail__description {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.service-detail__benefits, .service-detail__process, .service-detail__prices {
  margin-bottom: 2rem;
}
.service-detail__benefits h3, .service-detail__process h3, .service-detail__prices h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.service-detail__benefits ul,
.service-detail__benefits ol, .service-detail__process ul,
.service-detail__process ol, .service-detail__prices ul,
.service-detail__prices ol {
  padding-left: 1.5rem;
}
.service-detail__benefits ul li,
.service-detail__benefits ol li, .service-detail__process ul li,
.service-detail__process ol li, .service-detail__prices ul li,
.service-detail__prices ol li {
  color: #4b5563;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.service-detail__benefits p, .service-detail__process p, .service-detail__prices p {
  color: #4b5563;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.service-detail__button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #dc2626;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease;
  align-self: flex-start;
}
.service-detail__button:hover {
  background: #b91c1c;
}

.service-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}
@media (min-width: 1024px) {
  .service-hero {
    padding: 6rem 0;
  }
}
.service-hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .service-hero__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .service-hero__container {
    padding: 0 2rem;
  }
}
.service-hero__content {
  text-align: center;
}
.service-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .service-hero__title {
    font-size: 3rem;
  }
}
.service-hero__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.service-hero__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.service-details {
  padding: 2rem 0 4rem;
}
@media (min-width: 1024px) {
  .service-details {
    padding: 3rem 0 6rem;
  }
}
.service-details__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .service-details__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .service-details__container {
    padding: 0 2rem;
  }
}
.service-details__content {
  margin-bottom: 3rem;
}
.service-details__content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .service-details__content h2 {
    font-size: 2.25rem;
  }
}
.service-details__content p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-details__benefits, .service-details__process, .service-details__prices {
  margin-bottom: 3rem;
}
.service-details__benefits h3, .service-details__process h3, .service-details__prices h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .service-details__benefits h3, .service-details__process h3, .service-details__prices h3 {
    font-size: 1.5rem;
  }
}
.service-details__benefits ul {
  list-style: none;
  padding: 0;
}
.service-details__benefits ul li {
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #dc2626;
}
.service-details__benefits ul li strong {
  color: #111827;
}
.service-details__process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .service-details__process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service-details__process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.service-details__process-step {
  text-align: center;
}
.service-details__process-step-number {
  width: 3rem;
  height: 3rem;
  background: #dc2626;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}
.service-details__process-step-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.service-details__process-step-content p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}
.service-details__prices-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .service-details__prices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service-details__prices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-details__prices-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.service-details__prices-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.service-details__prices-item-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc2626;
  margin: 0;
}
.service-details__cta {
  text-align: center;
  background: #f9fafb;
  padding: 3rem;
  border-radius: 1rem;
}
.service-details__cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .service-details__cta h3 {
    font-size: 1.875rem;
  }
}
.service-details__cta p {
  color: #4b5563;
  margin-bottom: 2rem;
}
.service-details__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .service-details__cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.service-details__cta-button {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.service-details__cta-button--primary {
  background: #dc2626;
  color: #ffffff;
}
.service-details__cta-button--primary:hover {
  background: #b91c1c;
}
.service-details__cta-button--secondary {
  background: #ffffff;
  color: #dc2626;
  border: 2px solid #dc2626;
}
.service-details__cta-button--secondary:hover {
  background: #fef2f2;
}

.related-services {
  padding: 4rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .related-services {
    padding: 6rem 0;
  }
}
.related-services__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .related-services__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .related-services__container {
    padding: 0 2rem;
  }
}
.related-services__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .related-services__title {
    font-size: 2.25rem;
  }
}
.related-services__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .related-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .related-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.related-services__item {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-services__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.related-services__item img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.related-services__item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 1.5rem 1.5rem 0.5rem;
}
.related-services__item p {
  color: #4b5563;
  margin: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.technologies {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .technologies {
    padding: 4rem 0;
  }
}
.technologies {
  background: #ffffff;
}
.technologies__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .technologies__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .technologies__container {
    padding: 0 2rem;
  }
}
.technologies__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.technologies__title {
  font-size: 1.875rem;
}
@media (min-width: 1024px) {
  .technologies__title {
    font-size: 2.25rem;
  }
}
.technologies__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0;
}
.technologies__controls {
  display: flex;
  gap: 1rem;
}
@media (max-width: 639px) {
  .technologies__controls {
    gap: 0.5rem;
  }
}
.technologies__controls-button {
  padding: 0.75rem;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  color: #dc2626;
}
.technologies__controls-button:hover {
  background: #fef2f2;
}
.technologies__controls-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.technologies__controls-button {
  transition: all 0.3s ease;
}
.technologies__slider {
  position: relative;
  padding-bottom: 70px;  
  overflow: hidden;
}
.technologies__slider-container {
  display: flex;
  transition: transform 0.5s ease-out;
}
.technologies__slider-item {
  width: 100%;
  flex-shrink: 0;
  padding: 0 0.75rem;
}
@media (min-width: 768px) {
  .technologies__slider-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .technologies__slider-item {
    width: 33.333%;
  }
}
.technologies__slider-card {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  cursor: pointer;
}
.technologies__slider-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.technologies__slider-card {
  transition: all 0.3s ease;
}
.technologies__slider-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}
.technologies__slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.technologies__slider-image img:hover {
  transform: scale(1.1);
}
.technologies__slider-image img {
  transition: all 0.3s ease;
}
.technologies__slider-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in oklab, #b91c1c 30%, transparent) 0%, transparent 100%);
  pointer-events: none;
}
.technologies__slider-content {
  padding: 1.5rem;
}
.technologies__slider-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}
.technologies__slider-title:hover {
  color: #dc2626;
}
.technologies__slider-title {
  transition: all 0.3s ease;
}
.technologies__slider-description {
  color: #4b5563;
  margin-bottom: 1rem;
}
.technologies__slider-link {
  color: #dc2626;
  font-weight: 600;
}
.technologies__slider-link:hover {
  color: #b91c1c;
}
.technologies__slider-link {
  transition: all 0.3s ease;
}

.locations {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .locations {
    padding: 4rem 0;
  }
}
.locations {
  background: linear-gradient(135deg, #fef2f2 0%, #f9fafb 100%);
}
.locations__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .locations__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .locations__container {
    padding: 0 2rem;
  }
}
.locations__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.locations__title {
  font-size: 1.875rem;
}
@media (min-width: 1024px) {
  .locations__title {
    font-size: 2.25rem;
  }
}
.locations__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0;
}
.locations__controls {
  display: none;
}
@media (min-width: 1024px) {
  .locations__controls {
    display: flex;
    gap: 1rem;
  }
}
.locations__controls-button {
  padding: 0.75rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: none;
  color: #dc2626;
}
.locations__controls-button:hover {
  background: #fef2f2;
}
.locations__controls-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.locations__controls-button {
  transition: all 0.3s ease;
}
.locations__slider {
  position: relative;
  overflow: hidden;
}
.locations__slider-container {
  display: flex;
  transition: transform 0.5s ease-out;
}
.locations__slider-item {
  width: 100%;
  flex-shrink: 0;
  padding: 0 0.75rem;
}
@media (min-width: 768px) {
  .locations__slider-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .locations__slider-item {
    width: 33.333%;
  }
}
.locations__slider-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.locations__slider-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.locations__slider-card {
  transition: all 0.3s ease;
}
.locations__slider-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}
.locations__slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.locations__slider-image img:hover {
  transform: scale(1.1);
}
.locations__slider-image img {
  transition: all 0.3s ease;
}
.locations__slider-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.locations__slider-image-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: #ffffff;
}
.locations__slider-image-content-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.locations__slider-image-content-title:hover {
  color: #dc2626;
}
.locations__slider-image-content-title {
  transition: all 0.3s ease;
}
.locations__slider-image-content-address {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  opacity: 0.9;
}
.locations__slider-image-content-address-icon {
  height: 1rem;
  width: 1rem;
  margin-right: 0.25rem;
}
.locations__slider-content {
  padding: 1.5rem;
}
.locations__slider-specialties-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.locations__slider-specialties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.locations__slider-specialties-list-item {
  padding: 0.25rem 0.75rem;
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.news {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .news {
    padding: 4rem 0;
  }
}
.news {
  background: #ffffff;
}
.news__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .news__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .news__container {
    padding: 0 2rem;
  }
}
.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.news__title {
  font-size: 1.875rem;
}
@media (min-width: 1024px) {
  .news__title {
    font-size: 2.25rem;
  }
}
.news__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0;
}

.news__title a{
  color: #111827;
}

.news__controls {
  display: flex;
  gap: 1rem;
}
@media (max-width: 639px) {
  .news__controls {
    gap: 0.5rem;
  }
}
.news__controls-button {
  padding: 0.75rem;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  color: #dc2626;
}
.news__controls-button:hover {
  background: #fef2f2;
}
.news__controls-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.news__controls-button {
  transition: all 0.3s ease;
}
.news__slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 70px;
}
.news__slider-container {
  display: flex;
  transition: transform 0.5s ease-out;
}
.news__slider-item {
  width: 100%;
  flex-shrink: 0;
  padding: 0 0.75rem;
}
@media (min-width: 768px) {
  .news__slider-item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .news__slider-item {
    width: 33.333%;
  }
}
.news__slider-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.news__slider-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.news__slider-card {
  transition: all 0.3s ease;
}
.news__slider-image {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.news__slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__slider-image img:hover {
  transform: scale(1.1);
}
.news__slider-image img {
  transition: all 0.3s ease;
}
.news__slider-image-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}
.news__slider-image-badge--red {
  background: #dc2626;
}
.news__slider-image-badge--blue {
  background: #2563eb;
}
.news__slider-image-badge--green {
  background: #16a34a;
}
.news__slider-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news__slider-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}
.news__slider-title:hover {
  color: #dc2626;
}
.news__slider-title {
  transition: all 0.3s ease;
}
.news__slider-date {
  display: flex;
  align-items: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.news__slider-date-icon {
  height: 1rem;
  width: 1rem;
  margin-right: 0.5rem;
}
.news__slider-description {
  color: #4b5563;
  margin-bottom: 1rem;
  flex: 1;
}
.news__slider-link {
  color: #dc2626;
  font-weight: 600;
  align-self: flex-start;
}
.news__slider-link:hover {
  color: #b91c1c;
}
.news__slider-link {
  transition: all 0.3s ease;
}

.news-section {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .news-section {
    padding: 6rem 0;
  }
}
.news-section {
  background: #ffffff;
}
.news-section__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .news-section__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .news-section__container {
    padding: 0 2rem;
  }
}
.news-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.news-section__title {
  font-size: 1.875rem;
}
@media (min-width: 1024px) {
  .news-section__title {
    font-size: 2.25rem;
  }
}
.news-section__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.news-section__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}
.news-section__filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.news-section__filter-button {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  border-radius: 0.5rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-section__filter-button:hover {
  border-color: #dc2626;
  color: #dc2626;
}
.news-section__filter-button--active {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
}
.news-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .news-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .news-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-section__card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}
.news-section__card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.news-section__card-image-container {
  position: relative;
  height: 16rem;
  overflow: hidden;
}
.news-section__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-section__card-image:hover {
  transform: scale(1.1);
}
.news-section__card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}
.news-section__card-badge--news {
  background: #dc2626;
}
.news-section__card-badge--promotion {
  background: #16a34a;
}
.news-section__card-content {
  padding: 1.5rem;
}
.news-section__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.news-section__card-title a{
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.news-section__card-description {
  color: #4b5563;
  margin-bottom: 1rem;
}
.news-section__card-date {
  display: flex;
  align-items: center;
  color: #6b7280;
  font-size: 0.875rem;
}
.news-section__card-date-icon {
  height: 1rem;
  width: 1rem;
  margin-right: 0.5rem;
}
.news-section__card-link {
  display: inline-block;
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.news-section__card-link:hover {
  color: #b91c1c;
  transform: translateX(4px);
}
.news-section__card-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid #dc2626;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}
.news-section__card-link:hover::after {
  border-left-color: #b91c1c;
  width: 6px;
}
.news-section__pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.news-section__pagination-button {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  border-radius: 0.5rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-section__pagination-button:hover:not(:disabled) {
  border-color: #dc2626;
  color: #dc2626;
}
.news-section__pagination-button--active {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
}
.news-section__pagination-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.news-detail {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .news-detail {
    padding: 6rem 0;
  }
}
.news-detail {
  background: #ffffff;
}
.news-detail__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .news-detail__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .news-detail__container {
    padding: 0 2rem;
  }
}
.news-detail__header {
  margin-bottom: 3rem;
}
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.news-detail__badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}
.news-detail__badge--news {
  background: #dc2626;
}
.news-detail__badge--promotion {
  background: #16a34a;
}
.news-detail__date {
  display: flex;
  align-items: center;
  color: #6b7280;
  font-size: 0.875rem;
}
.news-detail__date-icon {
  height: 1rem;
  width: 1rem;
  margin-right: 0.5rem;
}
.news-detail__title {
  font-size: 2.25rem;
}
@media (min-width: 1024px) {
  .news-detail__title {
    font-size: 3rem;
  }
}
.news-detail__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.news-detail__subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.6;
}
.news-detail__image {
  margin-bottom: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.news-detail__image-src {
  width: 100%;
  height: auto;
  display: block;
}
.news-detail__content {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
}
.news-detail__content h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #111827;
  margin: 2rem 0 1rem 0;
}
.news-detail__content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 2rem 0 1rem 0;
}
.news-detail__content p {
  margin-bottom: 1.5rem;
}
.news-detail__content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.news-detail__content ul li {
  margin-bottom: 0.5rem;
}
.news-detail__content blockquote {
  border-left: 4px solid #dc2626;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #4b5563;
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.news-detail__cta {
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  border: 1px solid #fee2e2;
  border-radius: 1rem;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}
.news-detail__cta h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.news-detail__cta p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.news-detail__cta-button {
  display: inline-block;
  background: #dc2626;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-detail__cta-button:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.news-detail__navigation {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.news-detail__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #dc2626;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-detail__back-link:hover {
  color: #b91c1c;
  transform: translateX(-4px);
}
.news-detail__back-link i {
  font-size: 0.875rem;
}

.faq {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .faq {
    padding: 4rem 0;
  }
}
.faq {
  background: #ffffff;
}
.faq__container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .faq__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .faq__container {
    padding: 0 2rem;
  }
}
.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq__title {
  font-size: 1.875rem;
}
@media (min-width: 1024px) {
  .faq__title {
    font-size: 2.25rem;
  }
}
.faq__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.faq__subtitle {
  font-size: 1.25rem;
  color: #4b5563;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  background: #f9fafb;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.faq__item:hover {
  border-color: #fecaca;
}
.faq__item {
  transition: all 0.3s ease;
}
.faq__question {
  width: 100%;
  padding: 1.5rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__question-text {
  font-weight: 600;
  color: #111827;
  padding-right: 2rem;
  font-size: 1.25rem;
}
.faq__question-icon {
  color: #dc2626;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__answer {
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
}
.faq__answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #4b5563;
  line-height: 1.6;
}
.faq__cta {
  text-align: center;
  margin-top: 3rem;
}
.faq__cta-text {
  color: #4b5563;
  margin-bottom: 1rem;
}
.faq__cta-button {
  display: inline-block;
  background: #dc2626;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
}
.faq__cta-button:hover {
  background: #b91c1c;
}
.faq__cta-button {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.faq__cta-button:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.booking-section {
  background-color: #f9fafb;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .booking-section {
    padding: 4rem 0;
  }
}
.booking-section__container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .booking-section__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .booking-section__container {
    padding: 0 2rem;
  }
}
.booking-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.booking-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .booking-section__title {
    font-size: 2.25rem;
  }
}
.booking-section__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}
.booking-section__form-container {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
.booking-section__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.booking-section__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.booking-section__field-group--full {
  grid-column: 1/-1;
}
.booking-section__field-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .booking-section__field-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.booking-section__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.booking-section__input, .booking-section__select, .booking-section__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.booking-section__input:focus, .booking-section__select:focus, .booking-section__textarea:focus {
  outline: none;
  ring: 2px;
  ring-color: #dc2626;
  border-color: #dc2626;
}
.booking-section__textarea {
  resize: vertical;
}
.booking-section__service-group {
  margin-bottom: 1.5rem;
}
.booking-section__service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-section__service-category {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
}
.booking-section__service-category h4 {
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.75rem;
}
.booking-section__service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .booking-section__service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.booking-section__service-item {
  display: flex;
  align-items: center;
}
.booking-section__service-item input[type=radio] {
  color: #dc2626;
  transition: all 0.3s ease;
}
.booking-section__service-item span {
  margin-left: 0.5rem;
  font-size: 0.875rem;
}
.booking-section__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.booking-section__privacy input[type=checkbox] {
  margin-top: 0.25rem;
  height: 1rem;
  width: 1rem;
  color: #dc2626;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
}
.booking-section__privacy label {
  font-size: 0.875rem;
  cursor: pointer;
  color: #4b5563;
}
.booking-section__privacy label a {
  color: #dc2626;
}
.booking-section__privacy label a:hover {
  color: #b91c1c;
}

.booking-section__privacy .callback-input-error-privacy {
   color: red;
   /* border: 1px solid red; */
}





.callback-form {
  background-color: #f9fafb;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .callback-form {
    padding: 6rem 0;
  }
}
.callback-form__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .callback-form__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .callback-form__container {
    padding: 0 2rem;
  }
}
.callback-form__header {
  text-align: center;
  margin-bottom: 3rem;
}
.callback-form__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .callback-form__title {
    font-size: 2.25rem;
  }
}
.callback-form__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}
.callback-form__form-wrapper {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
.callback-form__form {
  transition: all 0.3s ease;
}
.callback-form__fields {
  border: none;
  margin: 0;
  padding: 0;
}
.callback-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .callback-form__row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.callback-form__field {
  position: relative;
}
.callback-form__input, .callback-form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.callback-form__input:focus, .callback-form__select:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.callback-form__input::placeholder, .callback-form__select::placeholder {
  color: #9ca3af;
}
.callback-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}
.callback-form__submit {
  width: 100%;
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.callback-form__submit:hover {
  background-color: #b91c1c;
}
.callback-form__submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.callback-form__privacy {
  margin-top: 1rem;
}
.callback-form__privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #4b5563;
  cursor: pointer;
}
.callback-form__privacy-checkbox {
  margin-top: 0.25rem;
  height: 1rem;
  width: 1rem;
  color: #dc2626;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}
.callback-form__privacy-checkbox:checked {
  background-color: #dc2626;
  border-color: #dc2626;
}
.callback-form__privacy-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.callback-form__privacy-checkmark {
  position: relative;
  display: inline-block;
  height: 1rem;
  width: 1rem;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}
.callback-form__privacy-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.3rem;
  top: 0.1rem;
  width: 0.3rem;
  height: 0.6rem;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.callback-form__privacy-checkbox:checked + .callback-form__privacy-checkmark::after {
  display: block;
}
.callback-form__privacy-link {
  color: #dc2626;
  text-decoration: none;
}
.callback-form__privacy-link:hover {
  color: #b91c1c;
  text-decoration: underline;
}
.callback-form__script {
  display: none;
}

.booking-section__submit {
  width: 100%;
  background-color: #dc2626;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}
.booking-section__submit:hover {
  background-color: #b91c1c;
}
.booking-section__submit:focus {
  outline: none;
  ring: 2px;
  ring-color: #dc2626;
  ring-offset: 2px;
}

.reviews-section {
  background-color: #f9fafb;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .reviews-section {
    padding: 4rem 0;
  }
}
.reviews-section__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .reviews-section__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .reviews-section__container {
    padding: 0 2rem;
  }
}
.reviews-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .reviews-section__title {
    font-size: 2.25rem;
  }
}
.reviews-section__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}
.reviews-section__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .reviews-section__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.reviews-section__stat {
  text-align: center;
}
.reviews-section__stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 0.5rem;
}
.reviews-section__stat-label {
  color: #4b5563;
}
.reviews-section__reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .reviews-section__reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reviews-section__reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.reviews-section__review-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.reviews-section__review-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.reviews-section__review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.reviews-section__review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
}
.reviews-section__review-author {
  font-weight: 600;
  color: #111827;
}
.reviews-section__review-specialty {
  font-size: 0.875rem;
  color: #4b5563;
}
.reviews-section__review-stars {
  display: flex;
  margin-bottom: 0.75rem;
}
.reviews-section__review-text {
  color: #374151;
  margin-bottom: 0.75rem;
}
.reviews-section__review-date {
  font-size: 0.875rem;
  color: #6b7280;
}
.reviews-section__load-more {
  text-align: center;
  margin-top: 3rem;
}
.reviews-section__load-more-button {
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.reviews-section__load-more-button:hover {
  background-color: #b91c1c;
}
.reviews-section__leave-review {
  margin-top: 4rem;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.reviews-section__leave-review-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
}
.reviews-section__leave-review-form {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reviews-section__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .reviews-section__form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.reviews-section__form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.reviews-section__form-input, .reviews-section__form-select, .reviews-section__form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.reviews-section__form-input:focus, .reviews-section__form-select:focus, .reviews-section__form-textarea:focus {
  outline: none;
  ring: 2px;
  ring-color: #dc2626;
  border-color: #dc2626;
}
.reviews-section__form-textarea {
  resize: vertical;
}
.reviews-section__rating {
  display: flex;
  gap: 0.25rem;
}
.reviews-section__rating-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.reviews-section__rating-label {
  cursor: pointer;
}
.reviews-section__rating-label i {
  font-size: 1.25rem;
  color: #d1d5db;
  transition: all 0.3s ease;
}
.reviews-section__rating-label i:hover {
  color: #fbbf24;
}
.reviews-section__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.reviews-section__privacy input[type=checkbox] {
  margin-top: 0.25rem;
  height: 1rem;
  width: 1rem;
  color: #dc2626;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
}
.reviews-section__privacy label {
  font-size: 0.875rem;
  color: #4b5563;
}
.reviews-section__privacy label a {
  color: #dc2626;
}
.reviews-section__privacy label a:hover {
  color: #b91c1c;
}
.reviews-section__submit {
  width: 100%;
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.reviews-section__submit:hover {
  background-color: #b91c1c;
}
.reviews-section__submit:focus {
  outline: none;
  ring: 2px;
  ring-color: #dc2626;
  ring-offset: 2px;
}

.reviews-slider {
  background-color: #f9fafb;
  padding: 4rem 0;
}
.reviews-slider__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .reviews-slider__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .reviews-slider__container {
    padding: 0 2rem;
  }
}
.reviews-slider__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .reviews-slider__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.reviews-slider__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}
@media (min-width: 1024px) {
  .reviews-slider__title {
    font-size: 2.25rem;
  }
}
.reviews-slider__view-all {
  color: #dc2626;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.reviews-slider__view-all:hover {
  color: #b91c1c;
}
.reviews-slider__slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.reviews-slider__slider::-webkit-scrollbar {
  height: 4px;
}
.reviews-slider__slider::-webkit-scrollbar-track {
  background: #e5e7eb;
}
.reviews-slider__slider::-webkit-scrollbar-thumb {
  background: #dc2626;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .reviews-slider__slider {
    gap: 1.5rem;
  }
}
.reviews-slider__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .reviews-slider__slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (min-width: 1024px) {
  .reviews-slider__slide {
    flex: 0 0 calc(33.333% - 1rem);
  }
}
.reviews-slider__review-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all 0.3s ease;
}
.reviews-slider__review-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.reviews-slider__review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.reviews-slider__review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
}
.reviews-slider__review-author {
  font-weight: 600;
  color: #111827;
}
.reviews-slider__review-date {
  font-size: 0.875rem;
  color: #4b5563;
}
.reviews-slider__review-text {
  color: #374151;
  line-height: 1.6;
}
.reviews-slider__leave-review {
  text-align: center;
  margin-top: 3rem;
}
.reviews-slider__leave-review-button {
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.reviews-slider__leave-review-button:hover {
  background-color: #b91c1c;
}

.contacts-section {
  background-color: #f9fafb;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .contacts-section {
    padding: 4rem 0;
  }
}
.contacts-section__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .contacts-section__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .contacts-section__container {
    padding: 0 2rem;
  }
}
.contacts-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.contacts-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .contacts-section__title {
    font-size: 2.25rem;
  }
}
.contacts-section__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}
.contacts-section__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contacts-section__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contacts-section__info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
}
.contacts-section__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contacts-section__info-item {
  display: flex;
  align-items: flex-start;
  /* border: 1px solid #e5e7eb; */
  gap: 1rem;
}
.contacts-section__info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: #fef2f2;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts-section__info-icon i {
  color: #dc2626;
  font-size: 1.25rem;
}
.contacts-section__info-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0.3rem;
  margin-bottom: 0.5rem;
}
.contacts-section__info-text {
  color: #4b5563;
  margin-bottom: 0.25rem;
}
.contacts-section__info-text:last-child {
  margin-bottom: 0;
}
.contacts-section__info-text a {
  color: #dc2626;
  font-weight: 500;
}
.contacts-section__info-text a:hover {
  color: #b91c1c;
}
.contacts-section__info-text span {
  font-size: 0.875rem;
  color: #6b7280;
  margin-left: 0.5rem;
}
.contacts-section__social {
  margin-top: 2rem;
}
.contacts-section__social-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.contacts-section__social-list {
  display: flex;
  gap: 1rem;
}
.contacts-section__social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #dc2626;
  color: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.contacts-section__social-link:hover {
  background-color: #b91c1c;
}
.contacts-section__form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
}
.contacts-section__form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contacts-section__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .contacts-section__form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contacts-section__form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.contacts-section__form-input, .contacts-section__form-select, .contacts-section__form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.contacts-section__form-input:focus, .contacts-section__form-select:focus, .contacts-section__form-textarea:focus {
  outline: none;
  ring: 2px;
  ring-color: #dc2626;
  border-color: #dc2626;
}
.contacts-section__form-textarea {
  resize: vertical;
}
.contacts-section__privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contacts-section__privacy input[type=checkbox] {
  margin-top: 0.25rem;
  height: 1rem;
  width: 1rem;
  color: #dc2626;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
}
.contacts-section__privacy label {
  font-size: 0.875rem;
  cursor: pointer;
  color: #4b5563;
}
.contacts-section__privacy label a {
  color: #dc2626;
}
.contacts-section__privacy label a:hover {
  color: #b91c1c;
}
.contacts-section__submit {
  width: 100%;
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contacts-section__submit:hover {
  background-color: #b91c1c;
}
.contacts-section__submit:focus {
  outline: none;
  ring: 2px;
  ring-color: #dc2626;
  ring-offset: 2px;
}
.contacts-section__map {
  /* border: 1px solid #d1d5db; */
  margin-top: 4rem;
  padding-bottom: 4rem;
}
.contacts-section__map-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}
.contacts-section__map-container {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  margin: 0;
  border: 1px solid #d1d5db;
  padding: 0;
  padding-bottom: 0px;
}

.contacts-section__map-container iframe {
    display: block;
    width: 100%;
    height: 700px; /* задай явно */
    border: none;
}
/*
.contacts-section__map-placeholder {
  width: 100%;
  height: 24rem;
  background-color: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.contacts-section__map-placeholder i {
  font-size: 2.5rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.contacts-section__map-placeholder p {
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.contacts-section__map-placeholder p:last-child {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
*/


.service-list__item {
  background-color: rgb(244, 244, 241);
  color: rgba(0, 0, 0, 0.85);
  font-weight: 700;
  width: 100%;
  min-height: 54px;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 0.5rem;
}
.service-list__item a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-list__item a:hover {
  color: #dc2626;
}
.service-list__item.service-list__item_active {
  background: #dc2626;
  color: #ffffff;
}
.service-list__item.service-list__item_active a {
  color: #ffffff;
}

.doctors__content {
  flex: 1;
}

.doctors-catalog__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .doctors-catalog__label {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.doctors-catalog__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.doctors-catalog__btn {
  background: #dc2626;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.doctors-catalog__btn:hover {
  background: #b91c1c;
}

.doclist__list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.doctor-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.doctor-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.doctor-card__head-container {
  margin-bottom: 1rem;
  text-align: center;
}

.doctor-card__image {
  max-width: 259.33px;
  max-height: 340px;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto 1rem;
}
.doctor-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.doctor-card__speciality {
  color: rgba(0, 0, 0, 0.85);
  margin-top: 12px;
}
.doctor-card__speciality a {
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}

.doctor-card__name {
  color: rgba(0, 0, 0, 0.85);
  margin-top: 12px;
}
.doctor-card__name a {
  color: #dc2626;
  text-decoration: none;
}
.doctor-card__name a:hover, .doctor-card__name a:active {
  color: #b91c1c;
}

.doctor-card__info-block {
  display: flex;
  margin-top: 12px;
  gap: 16px 54px;
}

.doctor-card__experience,
.doctor-card__reports {
  flex: 1;
  text-align: center;
}
.doctor-card__experience a,
.doctor-card__reports a {
  color: inherit;
  text-decoration: none;
}
.doctor-card__experience dl,
.doctor-card__reports dl {
  margin: 0;
}
.doctor-card__experience dt,
.doctor-card__reports dt {
  font-size: 1.25rem;
  font-weight: 700;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.doctor-card__experience dd,
.doctor-card__reports dd {
  font-size: 0.875rem;
  color: #4b5563;
}

.consultation__divider {
  height: 1px;
  background: #e5e7eb;
  margin: 3rem 0;
  border: none;
}

.btn {
  border: none;
  cursor: pointer;
}

.btn_primary {
  background: #dc2626;
  color: #ffffff;
}
.btn_primary:hover {
  background: #b91c1c;
}

.doctors-section {
  background-color: #f9fafb;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .doctors-section {
    padding: 4rem 0;
  }
}
.doctors-section__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .doctors-section__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .doctors-section__container {
    padding: 0 2rem;
  }
}
.doctors-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.doctors-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .doctors-section__title {
    font-size: 2.25rem;
  }
}
.doctors-section__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}
.doctors-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .doctors-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .doctors-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.doctors-section__card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.doctors-section__card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.doctors-section__card-image-container {
  position: relative;
}
.doctors-section__card-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.doctors-section__card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.doctors-section__card-content {
  padding: 1.5rem;
}
.doctors-section__card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.doctors-section__card-specialty {
  color: #dc2626;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.doctors-section__card-description {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.doctors-section__card-education {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}
.doctors-section__card-education i {
  margin-right: 0.5rem;
}

.footer {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #ffffff;
}
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem 0;
}
@media (min-width: 640px) {
  .footer__container {
    padding: 3rem 1.5rem 0;
  }
}
@media (min-width: 1024px) {
  .footer__container {
    padding: 3rem 2rem 0;
  }
}
.footer__grid {
  display: grid;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__grid {
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer__section-logo {
  height: 3rem;
  margin-bottom: 1.5rem;
}
.footer__section-description {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.footer__section-social {
  display: flex;
  gap: 0.5rem;
}
.footer__section-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #dc2626;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__section-social-link:hover {
  background: #b91c1c;
}
.footer__section-social-link {
  transition: all 0.3s ease;
}
.footer__section-social-link svg {
  height: 1.25rem;
  width: 1.25rem;
}
.footer__section-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.footer__section-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.footer__section-list-item-link {
  color: #d1d5db;
  font-size: 0.875rem;
  text-decoration: none;
}
.footer__section-list-item-link:hover {
  color: #f87171;
}
.footer__section-list-item-link {
  transition: all 0.3s ease;
}
.footer__section-list-item-icon {
  height: 1rem;
  width: 1rem;
  color: #f87171;
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer__section-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  /* border: 1px solid #f3f4f6;   */
}

.footer__section-contact-item p{
	margin: 0;
}

.footer__section-contact-item-icon {
  height: 1.25rem;
  width: 1.25rem;
  color: #f87171;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  /* border: 1px solid #f3f4f6;   */
}

.footer__section-contact-item-content-link {
  color: #d1d5db;
  font-weight: 600;
  text-decoration: none;
  display: block;
  /* border: 1px solid #f3f4f6;   */
}

.footer__section-contact-item-content-link:hover {
  color: #f87171;
}

.footer__section-contact-item-content-link a{
  color: #d1d5db;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.footer__section-contact-item-content-link a:hover {
  color: #f87171;
}

.footer__section-contact-item-content-link {
  transition: all 0.3s ease;
}


.footer__section-contact-item-content-note {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.footer__bottom {
  border-top: 1px solid #374151;
  padding: 2rem 0;
}
.footer__bottom-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__bottom-content {
  gap: 1rem;
}
.footer__bottom-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links-link {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: none;
}
.footer__bottom-links-link:hover {
  color: #f87171;
}
.footer__bottom-links-link {
  transition: all 0.3s ease;
}
.footer__fixed-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 40;
}
.footer__fixed-buttons-button {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.footer__fixed-buttons-button--whatsapp {
  background: #25d366;
  color: #ffffff;
}
.footer__fixed-buttons-button--whatsapp:hover {
  transform: scale(1.1);
}
.footer__fixed-buttons-button--phone {
  background: #dc2626;
  color: #ffffff;
}
.footer__fixed-buttons-button--phone:hover {
  background: #b91c1c;
  transform: scale(1.1);
}
.footer__fixed-buttons-button {
  transition: all 0.3s ease;
}
.footer__fixed-buttons-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.error, .content
{
  /* border: 1px solid #000000; */
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 1280px;
  margin: 50px auto 100px;
  padding-inline: 24px;

  vertical-align: middle;
  color: #000000;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
}

.error a, .content a {
    color: #000000;
    text-decoration: none;
}

.error h1, .content h1 {
  text-align: center;
}


.content {
  padding: 4rem 0;
  background: #ffffff;
}

.mailmsg {
	text-align:center;
	/* color: red; */
}

.btn-submit:disabled,
.btn-submit[disabled] {
 border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}

.callback-input-error {
   border: 1px solid red;
}

.contacts-section__privacy .callback-input-error-privacy {
   color: red;
   /* border: 1px solid red; */
}

.callback-contacts-form-show {
	cursor: pointer;
	text-decoration: underline;
    font-weight: bold;
}

.news-list {
	/* border: 1px solid #000000; */
	/* font: normal normal normal 21px/38px Montserrat; */
	font: normal normal normal 21px/38px Roboto;
	letter-spacing: 0px;
	color: #2A2626;
	text-transform: uppercase;	
	/* border: 1px solid #000000; */
	margin-bottom: 20px;
	margin-top: 70px;
}

.news-list .itm{
    position: relative;
	height: 250px;	
    display: block; 
		border: 2px solid #707070;
	border-radius: 5px; 
	float: left;
    width: calc(33% - 40px);
	
	/* font: normal normal medium 10px/21px Montserrat; */
	font: normal normal normal 10px/21px Roboto;
    /* font-weight: 500; */
	color: #000000;
	margin-left: 5px;
	margin-right: 5px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 350px;
	margin-bottom: 20px;
	overflow: hidden;
    line-height: 25px;
    font-size: 14px;	
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}

.news-list .itm h3{
	/* border: 1px solid #000000; */
	margin: 0;
	padding: 0;
	text-align: center;
}

.news-list .itm:hover{
	box-shadow: 0px 3px 6px #00000029;
}

.news-list .itm d{
    display: block; 
    font-size: 17px;	
	font-style: bold;
}

.news-list .itm .img{
    position: absolute;
	left: 0px;
	top: 0px;
    width: 100%;
    height: 340px; 
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.8;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	border-radius: 5px; 
}

.news-list .itm:hover .img{
	opacity: 1;
}

.news-list .itm .sl{
    position: absolute;
	left: 0px;
	top: calc(100% - 75px);
    width: 100%;
    height: 75px; 
	background-repeat: repeat-x;
	/* border: 1px solid #000000; */
	z-index: 100;
}

.news_info .img{
    position: relative;
    width: 100%;
    height: 340px; 
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.8;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	border-radius: 5px; 
	/* border: 1px solid #000000; */
}



.doctors {
  padding: 4rem 0;
  background: #ffffff;
}
.doctors__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .doctors__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .doctors__container {
    padding: 0 2rem;
  }
}

.doctors__content {
  width: 100%;
}

.doctors-catalog__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.doctors-catalog__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.doctors-catalog__btn {
  background: #dc2626;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.doctors-catalog__btn:hover {
  background: #b91c1c;
}

.doclist__list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.doctor-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 0 0 calc(33.333% - 10.667px);
}
.doctor-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.doctor-card__head-container {
  margin-bottom: 1rem;
  text-align: center;
}

.doctor-card__image {
  max-width: 259.33px;
  max-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto 1rem;
}
.doctor-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.doctor-card__speciality {
  color: rgba(0, 0, 0, 0.85);
  margin-top: 12px;
}
.doctor-card__speciality a {
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}

.doctor-card__name {
  color: rgba(0, 0, 0, 0.85);
  margin-top: 12px;
}
.doctor-card__name a {
  color: #dc2626;
  text-decoration: none;
}
.doctor-card__name a:hover, .doctor-card__name a:active {
  color: #b91c1c;
}

.doctor-card__info-block {
  display: flex;
  margin-top: 12px;
  gap: 16px 54px;
}

.doctor-card__experience,
.doctor-card__reports {
  flex: 1;
  text-align: center;
}
.doctor-card__experience a,
.doctor-card__reports a {
  color: inherit;
  text-decoration: none;
}
.doctor-card__experience dl,
.doctor-card__reports dl {
  margin: 0;
}
.doctor-card__experience dt,
.doctor-card__reports dt {
  font-size: 1.25rem;
  font-weight: 700;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.doctor-card__experience dd,
.doctor-card__reports dd {
  font-size: 0.875rem;
  color: #4b5563;
}

@media (max-width: 768px) {
  .doctors-catalog__label {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .doctor-card {
    flex: 0 0 calc(50% - 8px);
  }
}

.consultation__divider {
  height: 1px;
  background: #e5e7eb;
  margin: 3rem 0;
  border: none;
}

.btn {
  border: none;
  cursor: pointer;
}

.btn_primary {
  background: #dc2626;
  color: #ffffff;
}
.btn_primary:hover {
  background: #b91c1c;
}

.doctors-section {
  background-color: #f9fafb;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .doctors-section {
    padding: 4rem 0;
  }
}
.doctors-section__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .doctors-section__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .doctors-section__container {
    padding: 0 2rem;
  }
}
.doctors-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.doctors-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .doctors-section__title {
    font-size: 2.25rem;
  }
}
.doctors-section__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}
.doctors-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .doctors-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .doctors-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.doctors-section__card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.doctors-section__card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.doctors-section__card-image-container {
  position: relative;
}
.doctors-section__card-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.doctors-section__card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.doctors-section__card-content {
  padding: 1.5rem;
}
.doctors-section__card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.doctors-section__card-specialty {
  color: #dc2626;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.doctors-section__card-description {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.doctors-section__card-education {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}
.doctors-section__card-education i {
  margin-right: 0.5rem;
}

.doctor-detail {
  padding: 2rem 0;
  background: #ffffff;
}
@media (min-width: 768px) {
  .doctor-detail {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .doctor-detail {
    padding: 4rem 0;
  }
}

.doctor-detail__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .doctor-detail__container {
    padding: 0 1.5rem;
  }
}

.doctor-detail__breadcrumb {
  margin-bottom: 2rem;
}

.doctor-detail__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.doctor-detail__breadcrumb-link {
  color: #dc2626;
  text-decoration: none;
  transition: color 0.3s ease;
}
.doctor-detail__breadcrumb-link:hover {
  color: #b91c1c;
}

.doctor-detail__breadcrumb-item--active {
  color: #111827;
  font-weight: 500;
}

.doctor-detail__breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: #9ca3af;
}

.doctor-detail__content {
  max-width: 64rem;
  margin: 0 auto;
}

.doctor-detail__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .doctor-detail__card {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.doctor-detail__image {
  flex-shrink: 0;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .doctor-detail__image {
    width: 280px;
    margin: 0;
  }
}

.doctor-detail__image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.doctor-detail__info {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .doctor-detail__info {
    text-align: left;
  }
}

.doctor-detail__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .doctor-detail__name {
    font-size: 1.875rem;
  }
}

.doctor-detail__speciality {
  font-size: 1.125rem;
  color: #dc2626;
  font-weight: 500;
  margin: 0 0 1rem;
}

.doctor-detail__experience {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .doctor-detail__experience {
    justify-content: flex-start;
  }
}

.doctor-detail__experience-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctor-detail__experience-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc2626;
}

.doctor-detail__experience-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.doctor-detail__btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.doctor-detail__description,
.doctor-detail__services,
.doctor-detail__schedule,
.doctor-detail__cta {
  margin-bottom: 2.5rem;
}

.doctor-detail__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.doctor-detail__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #dc2626;
}

.doctor-detail__section-text {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1rem;
}

/* Prices */
.doctor-detail__prices {
  margin-bottom: 2.5rem;
}

.doctor-detail__prices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .doctor-detail__prices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.doctor-detail__prices-item {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border-left: 3px solid #dc2626;
}

.doctor-detail__prices-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.doctor-detail__prices-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

/* Description Block */
.doctor-detail__description-block {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 3px solid #dc2626;
}

.doctor-detail__description-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 1rem;
}

.doctor-detail__description-text {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.doctor-detail__description-text:last-child {
  margin-bottom: 0;
}

.doctor-detail__services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .doctor-detail__services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.doctor-detail__services-item {
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  color: #4b5563;
  position: relative;
  padding-left: 2rem;
}

.doctor-detail__services-item::before {
  content: '✓';
  position: absolute;
  left: 0.75rem;
  color: #dc2626;
  font-weight: 700;
}

.doctor-detail__schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .doctor-detail__schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .doctor-detail__schedule-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.doctor-detail__schedule-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border-left: 3px solid #e5e7eb;
}

.doctor-detail__schedule-day {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.doctor-detail__schedule-time {
  font-size: 0.875rem;
  color: #6b7280;
}

.doctor-detail__schedule-time--off {
  color: #dc2626;
}

.doctor-detail__cta {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  color: #ffffff;
}

.doctor-detail__cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.doctor-detail__cta-text {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.doctor-detail__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .doctor-detail__cta-buttons {
    flex-direction: row;
  }
}

.doctor-detail__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #ffffff;
}

.doctor-detail__cta-btn.btn_primary {
  background: #ffffff;
  color: #dc2626;
}

.doctor-detail__cta-btn.btn_primary:hover {
  background: #fef2f2;
}

.doctor-detail__cta-btn.btn_outline {
  background: transparent;
  color: #ffffff;
}

.doctor-detail__cta-btn.btn_outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.doctor-detail__price_off {
	display: none;
}


.pages {
	/* border: 1px solid #000000; */
    position: relative;
	clear:both;
    display: block; 
	text-align: center;
	height:50px;
	padding-top: 30px;
	padding-bottom: 30px;
	font: normal normal 500 18px/33px Montserrat;
	color: #000000;
}

.pages a{
    text-decoration: none;
	color: #000000;
	font: normal normal 500 18px/33px Montserrat;
	/* border: 1px solid #000000; */

    line-height: 40px;
	/* width: 45%; */
	height: 40px;
	
	margin-left: 5px;
	padding-left: 5px;
	padding-right: 5px;
	margin-right: 5px;
	display: inline-block;
    /* display: block;  */
	/* float: left; */
}

.pages a:hover {
	text-decoration: underline;
}

.pages .n:hover {
	border-radius: 50%; 
    text-decoration:none;
	background-color: #f6ab27;
	color: #FFFFFF;
}

.pages .s{
	background-color: #ff7c7c;
	border-radius: 50%; 
	color: #FFFFFF;
}

.pages .n{
	width: 30px;
}
