body {
  font-family: sans-serif;
}

.topbar {
  background-color: #f8fafc;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}
.topbar .topbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar .upnav {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topbar .upnav a {
  font-size: 13px;
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.topbar .upnav a:hover {
  color: #3b82f6;
}
.topbar .upnav a.badge-link {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar .upnav a.badge-link .badge-red {
  background-color: #ef4444;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-right .lang-switcher {
  position: relative;
  display: inline-block;
}
.topbar-right .lang-switcher .lang-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.3s ease;
  font-size: 13px;
}
.topbar-right .lang-switcher .lang-btn:hover {
  background-color: #f1f5f9;
}
.topbar-right .lang-switcher .lang-btn .globe-icon {
  color: #3b82f6;
  font-size: 14px;
}
.topbar-right .lang-switcher .lang-btn .arrow-icon {
  font-size: 11px;
  color: #64748b;
  transition: transform 0.2s ease;
}
.topbar-right .lang-switcher .lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  margin: 0;
  list-style: none;
  min-width: 170px;
  z-index: 9999;
  animation: fadeInLang 0.2s ease-out;
}
.topbar-right .lang-switcher .lang-dropdown.active {
  display: block;
}
.topbar-right .lang-switcher .lang-dropdown li {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #1e293b;
  transition: background-color 0.2s ease;
}
.topbar-right .lang-switcher .lang-dropdown li:hover, .topbar-right .lang-switcher .lang-dropdown li.active {
  background-color: #f1f5f9;
  color: #3b82f6;
}
.topbar-right .lang-switcher .lang-dropdown li img {
  width: 20px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.topbar-right .lang-switcher .lang-dropdown li span {
  font-weight: 500;
}

.main-navbar {
  padding: 16px 0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-navbar .navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.main-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-navbar .navbar-brand .logo img {
  height: 45px;
  width: auto;
}
.main-navbar .navbar-brand .medal-icon i {
  font-size: 20px;
  color: #3b82f6;
}
.main-navbar .main-nav {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.main-navbar .main-nav .nav-item {
  position: relative;
}
.main-navbar .main-nav .nav-item > a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}
.main-navbar .main-nav .nav-item > a:hover {
  color: #3b82f6;
}
.main-navbar .main-nav .nav-item .dropdown-arrow {
  font-size: 12px;
  color: #9CA3AF;
}
.main-navbar .main-nav .nav-item.has-hover:hover .dropdown-menu {
  display: block;
  animation: slideDown 0.3s ease-out;
}
.main-navbar .main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 999;
}
.main-navbar .main-nav .dropdown-menu li {
  list-style: none;
}
.main-navbar .main-nav .dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #1e293b;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}
.main-navbar .main-nav .dropdown-menu li a:hover {
  background: #f8fafc;
  color: #3b82f6;
}
.main-navbar .main-nav .dropdown-menu li a i {
  font-size: 16px;
  color: #3b82f6;
  min-width: 20px;
}
.main-navbar .navbar-actions {
  display: flex;
  gap: 16px;
}
.main-navbar .navbar-actions .phone-btn {
  background: #3b82f6;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.main-navbar .navbar-actions .phone-btn:hover {
  background: rgb(11.1512195122, 99.1219512195, 242.8487804878);
  transform: translateY(-2px);
}
.main-navbar .navbar-actions .phone-btn i {
  font-size: 14px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLang {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-section {
  padding: 80px 4%;
  background-color: #f8fafc;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.about-section .about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-section .about-video-wrapper {
  position: relative;
  flex: 1;
  min-width: 45%;
}
.about-section .about-video-wrapper video {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-section .video-bg-decor {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: #3b82f6;
  border-radius: 20px;
  z-index: 1;
  opacity: 0.2;
}
.about-section .about-content {
  flex: 1;
}
.about-section .about-content h2 {
  font-size: 36px;
  color: #1e293b;
  margin-top: 15px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-section .about-content p {
  color: #64748b;
  line-height: 1.6;
  font-size: 16px;
}
.about-section .badge {
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}
.about-section .stats-grid {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}
.about-section .stats-grid .stat-item h3 {
  font-size: 32px;
  color: #3b82f6;
  margin: 0;
}
.about-section .stats-grid .stat-item p {
  font-size: 14px;
  margin: 5px 0 0 0;
}

.international-medical-section {
  padding: 80px 4%;
  background-color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.international-medical-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}
.international-medical-section .text-block {
  flex: 1.2;
}
.international-medical-section .text-block h2 {
  font-size: 34px;
  color: #1e293b;
  margin-top: 15px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.international-medical-section .text-block p {
  color: #64748b;
  line-height: 1.7;
  font-size: 16px;
}
.international-medical-section .badge {
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}
.international-medical-section .features-sub-grid {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.international-medical-section .sub-card {
  background-color: #f8fafc;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
}
.international-medical-section .sub-card:hover {
  transform: translateX(5px);
  background-color: rgb(244.2917073171, 248.1707317073, 254.5082926829);
}
.international-medical-section .sub-card i {
  font-size: 24px;
  color: #3b82f6;
  margin-bottom: 12px;
}
.international-medical-section .sub-card h4 {
  font-size: 18px;
  color: #1e293b;
  margin: 0 0 8px 0;
}
.international-medical-section .sub-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.why-choose-us-section {
  padding: 80px 4%;
  background-color: #f8fafc;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.why-choose-us-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
}
.why-choose-us-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.why-choose-us-section .section-header h2 {
  font-size: 36px;
  color: #1e293b;
  margin-top: 15px;
  margin-bottom: 10px;
}
.why-choose-us-section .section-header .subtitle {
  color: #64748b;
  font-size: 16px;
}
.why-choose-us-section .badge {
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}
.why-choose-us-section .reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-choose-us-section .reason-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  text-align: left;
}
.why-choose-us-section .reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.08);
}
.why-choose-us-section .reason-card:hover .icon-box {
  background-color: #3b82f6;
}
.why-choose-us-section .reason-card:hover .icon-box i {
  color: #ffffff;
}
.why-choose-us-section .reason-card .icon-box {
  width: 50px;
  height: 50px;
  background-color: #e0f2fe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.why-choose-us-section .reason-card .icon-box i {
  font-size: 22px;
  color: #3b82f6;
  transition: all 0.3s ease;
}
.why-choose-us-section .reason-card h3 {
  font-size: 18px;
  color: #1e293b;
  margin: 0 0 12px 0;
  font-weight: 700;
}
.why-choose-us-section .reason-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.map-section {
  padding: 0;
  background-color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.map-section .map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
.map-section .map-header {
  text-align: center;
  margin-bottom: 40px;
}
.map-section .map-header .badge {
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}
.map-section .map-header h2 {
  font-size: 36px;
  color: #1e293b;
  margin: 0 0 10px 0;
  font-weight: 700;
}
.map-section .map-header p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
.map-section .map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}
.map-section .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-section .map-contact-overlay {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.map-section .map-info-card {
  flex: 1;
  min-width: 220px;
  background: #f8fafc;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.map-section .map-info-card:hover {
  background: rgb(244.2917073171, 248.1707317073, 254.5082926829);
  border-color: rgba(59, 130, 246, 0.2);
}
.map-section .map-info-card i {
  font-size: 22px;
  color: #3b82f6;
  margin-top: 2px;
  flex-shrink: 0;
}
.map-section .map-info-card .map-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-section .map-info-card .map-info-text span {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.map-section .map-info-card .map-info-text strong, .map-section .map-info-card .map-info-text a {
  font-size: 15px;
  color: #1e293b;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}
.map-section .map-info-card .map-info-text strong:hover, .map-section .map-info-card .map-info-text a:hover {
  color: #3b82f6;
}

.footer {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 60px 4% 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer .footer-col h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer .footer-col .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-col .footer-links li {
  margin-bottom: 12px;
}
.footer .footer-col .footer-links li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer .footer-col .footer-links li a:hover {
  color: #3b82f6;
}
.footer .brand-col .footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer .brand-col .footer-logo img {
  height: 60px;
  width: auto;
}
.footer .brand-col .footer-about {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px 0;
  color: #d1d5db;
}
.footer .brand-col .footer-socials {
  display: flex;
  gap: 12px;
}
.footer .brand-col .footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .brand-col .footer-socials a:hover {
  background: #3b82f6;
}
.footer .brand-col .footer-socials a i {
  font-size: 18px;
}
.footer .contacts-col .footer-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .contacts-col .footer-contacts li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}
.footer .contacts-col .footer-contacts li i {
  color: #3b82f6;
  min-width: 20px;
  font-size: 18px;
  margin-top: 2px;
}
.footer .contacts-col .footer-contacts li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer .contacts-col .footer-contacts li div a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .contacts-col .footer-contacts li div a:hover {
  color: #3b82f6;
}
.footer .contacts-col .footer-contacts li div span {
  color: #9ca3af;
  font-size: 13px;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.footer .footer-bottom .footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer .footer-bottom .footer-bottom-container p {
  margin: 0;
  color: #9ca3af;
}
.footer .footer-bottom .footer-bottom-container .footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer .footer-bottom .footer-bottom-container .footer-bottom-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .footer-bottom .footer-bottom-container .footer-bottom-links a:hover {
  color: #3b82f6;
}

@media (max-width: 992px) {
  .topbar .topbar-container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .topbar .upnav {
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
  }
  .main-navbar .navbar-container {
    gap: 20px;
    flex-wrap: wrap;
  }
  .main-navbar .main-nav {
    gap: 16px !important;
    width: 100%;
    order: 3;
  }
  .main-navbar .main-nav .nav-item > a {
    font-size: 13px;
    padding: 6px 10px;
  }
  .main-navbar .navbar-actions {
    order: 2;
  }
  .main-navbar .navbar-actions .phone-btn {
    font-size: 12px;
    padding: 8px 12px;
  }
  .about-section {
    padding: 60px 4%;
  }
  .about-section .about-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-section .about-video-wrapper {
    min-width: 100%;
  }
  .about-section .about-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .about-section .about-content p {
    font-size: 15px;
  }
  .about-section .stats-grid {
    gap: 20px;
    padding-top: 16px;
    margin-top: 20px;
  }
  .about-section .stats-grid .stat-item h3 {
    font-size: 28px;
  }
  .international-medical-section {
    padding: 60px 4%;
  }
  .international-medical-section .section-container {
    flex-direction: column;
    gap: 40px;
  }
  .international-medical-section .text-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .international-medical-section .features-sub-grid {
    width: 100%;
  }
  .why-choose-us-section {
    padding: 60px 4%;
  }
  .why-choose-us-section .section-header {
    margin-bottom: 40px;
  }
  .why-choose-us-section .section-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .why-choose-us-section .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .map-section .map-header h2 {
    font-size: 28px;
  }
  .map-section .map-wrapper {
    height: 350px;
  }
  .footer {
    padding: 40px 4% 20px;
  }
  .footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer .brand-col {
    grid-column: 1/-1;
  }
  .footer .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer .footer-bottom-container .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .topbar {
    padding: 12px 0;
  }
  .topbar .upnav {
    display: none;
  }
  .topbar .topbar-right {
    width: 100%;
    justify-content: flex-end;
  }
  .main-navbar {
    padding: 12px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  }
  .main-navbar .navbar-container {
    gap: 12px;
    padding: 0 16px;
  }
  .main-navbar .navbar-brand {
    order: 1;
  }
  .main-navbar .navbar-brand .logo img {
    height: 40px;
  }
  .main-navbar .main-nav {
    display: none !important;
  }
  .main-navbar .navbar-actions {
    order: 2;
  }
  .main-navbar .navbar-actions .phone-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .main-navbar .navbar-actions .phone-btn span {
    display: none;
  }
  .main-navbar .navbar-actions .phone-btn i {
    font-size: 14px;
  }
  .about-section {
    padding: 40px 16px;
  }
  .about-section .about-container {
    gap: 24px;
  }
  .about-section .about-content .badge {
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
  .about-section .about-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .about-section .about-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .about-section .about-video-wrapper video {
    border-radius: 16px;
  }
  .about-section .about-video-wrapper .video-bg-decor {
    width: 70px;
    height: 70px;
    top: -15px;
    left: -15px;
  }
  .about-section .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
  }
  .about-section .stats-grid .stat-item h3 {
    font-size: 24px;
  }
  .about-section .stats-grid .stat-item p {
    font-size: 13px;
  }
  .international-medical-section {
    padding: 40px 16px;
  }
  .international-medical-section .text-block .badge {
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
  .international-medical-section .text-block h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .international-medical-section .text-block p {
    font-size: 14px;
    line-height: 1.6;
  }
  .international-medical-section .features-sub-grid {
    gap: 16px;
  }
  .international-medical-section .features-sub-grid .sub-card {
    padding: 20px;
    border-left: 3px solid #3b82f6;
  }
  .international-medical-section .features-sub-grid .sub-card i {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .international-medical-section .features-sub-grid .sub-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .international-medical-section .features-sub-grid .sub-card p {
    font-size: 13px;
  }
  .why-choose-us-section {
    padding: 40px 16px;
  }
  .why-choose-us-section .section-header {
    margin-bottom: 32px;
  }
  .why-choose-us-section .section-header .badge {
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
  .why-choose-us-section .section-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .why-choose-us-section .section-header .subtitle {
    font-size: 14px;
  }
  .why-choose-us-section .reasons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-choose-us-section .reasons-grid .reason-card {
    padding: 20px;
  }
  .why-choose-us-section .reasons-grid .reason-card .icon-box {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }
  .why-choose-us-section .reasons-grid .reason-card .icon-box i {
    font-size: 20px;
  }
  .why-choose-us-section .reasons-grid .reason-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .why-choose-us-section .reasons-grid .reason-card p {
    font-size: 13px;
    line-height: 1.6;
  }
  .map-section .map-container {
    padding: 40px 16px;
  }
  .map-section .map-header {
    margin-bottom: 24px;
  }
  .map-section .map-header .badge {
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 10px;
  }
  .map-section .map-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .map-section .map-header p {
    font-size: 14px;
  }
  .map-section .map-wrapper {
    height: 300px;
    border-radius: 16px;
  }
  .map-section .map-contact-overlay {
    gap: 16px;
    margin-top: 20px;
  }
  .map-section .map-info-card {
    padding: 16px;
    min-width: 100%;
  }
  .map-section .map-info-card i {
    font-size: 20px;
  }
  .map-section .map-info-card .map-info-text strong, .map-section .map-info-card .map-info-text a {
    font-size: 14px;
  }
  .footer {
    padding: 30px 16px 16px;
  }
  .footer .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer .brand-col {
    grid-column: auto;
  }
  .footer .brand-col .footer-logo img {
    height: 50px;
  }
  .footer .brand-col .footer-about {
    font-size: 13px;
  }
  .footer .footer-col h3 {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .footer .footer-col .footer-links li a {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .footer .contacts-col .footer-contacts li {
    font-size: 13px;
  }
  .footer .footer-bottom-container {
    font-size: 12px;
  }
  .footer .footer-bottom-container p, .footer .footer-bottom-container a {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .topbar-right .lang-switcher .lang-btn {
    padding: 4px 10px;
    font-size: 12px;
  }
  .topbar-right .lang-switcher .lang-btn .globe-icon {
    font-size: 12px;
  }
  .about-section {
    padding: 30px 14px;
  }
  .about-section .about-content h2 {
    font-size: 20px;
  }
  .about-section .about-content p {
    font-size: 13px;
  }
  .about-section .stats-grid .stat-item h3 {
    font-size: 20px;
  }
  .about-section .stats-grid .stat-item p {
    font-size: 12px;
  }
  .international-medical-section {
    padding: 30px 14px;
  }
  .international-medical-section .text-block h2 {
    font-size: 20px;
  }
  .international-medical-section .text-block p {
    font-size: 13px;
  }
  .international-medical-section .features-sub-grid {
    gap: 12px;
  }
  .international-medical-section .features-sub-grid .sub-card {
    padding: 16px;
  }
  .international-medical-section .features-sub-grid .sub-card h4 {
    font-size: 15px;
  }
  .international-medical-section .features-sub-grid .sub-card p {
    font-size: 12px;
  }
  .why-choose-us-section {
    padding: 30px 14px;
  }
  .why-choose-us-section .section-header h2 {
    font-size: 20px;
  }
  .why-choose-us-section .reasons-grid .reason-card {
    padding: 16px;
  }
  .why-choose-us-section .reasons-grid .reason-card h3 {
    font-size: 15px;
  }
  .why-choose-us-section .reasons-grid .reason-card p {
    font-size: 12px;
  }
  .map-section .map-container {
    padding: 30px 14px;
  }
  .map-section .map-header h2 {
    font-size: 20px;
  }
  .map-section .map-header p {
    font-size: 13px;
  }
  .map-section .map-wrapper {
    height: 250px;
    border-radius: 14px;
  }
  .map-section .map-info-card {
    padding: 14px;
  }
  .map-section .map-info-card i {
    font-size: 18px;
  }
  .map-section .map-info-card .map-info-text strong, .map-section .map-info-card .map-info-text a {
    font-size: 13px;
  }
  .map-section .map-info-card .map-info-text span {
    font-size: 11px;
  }
  .footer {
    padding: 24px 14px 14px;
  }
  .footer .footer-col h3 {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .about-section .about-content h2 {
    font-size: 18px;
  }
  .about-section .stats-grid .stat-item h3 {
    font-size: 18px;
  }
  .international-medical-section .text-block h2 {
    font-size: 18px;
  }
  .why-choose-us-section .section-header h2 {
    font-size: 18px;
  }
  .map-section .map-header h2 {
    font-size: 18px;
  }
  .map-section .map-wrapper {
    height: 220px;
  }
}/*# sourceMappingURL=about.css.map */