* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00bcd4;
  --primary-dark: #0097a7;
  --secondary-color: #4caf50;
  --secondary-dark: #388e3c;
  --bg-dark: #0a1628;
  --bg-light: #f5f7fa;
  --text-dark: #0a1628;
  --text-gray: #666666;
  --text-light: #999999;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Scrollbar styles ===== */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

header {
  background-color: transparent;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: var(--bg-dark);
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-qrcode {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.logo {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.logo img {
  height: 36px;
  margin-right: 12px;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  margin-right: 90px;
}

.nav-links li {
  margin-left: 35px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 400;
  border-radius: 404px;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #fff;
  color: var(--primary-color);
}

.hotline {
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.hotline img {
  height: 14px;
  margin-right: 6px;
}

.banner {
  position: relative;
  height: 569px;
  overflow: hidden;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.banner-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-dots span.active {
  background-color: #fff;
  transform: scale(1.2);
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.section {
  padding: 65px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title h2 {
  font-size: 25px;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-weight: 550;
  letter-spacing: 1px;
}

.section-title .deco {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin: 0 12px;
}

.section-title .line {
  width: 55px;
  height: 1px;
  background-color: #dddddd;
}

.btn-secondary {
  display: inline-block;
  color: var(--primary-color);
  padding: 4px 15px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  border-radius: 404px;
  border: 1px solid var(--primary-color);
  background-color: #fff;
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
}

.company-intro {
  background-image: url("../../../images/home-img/bg-services.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.intro-wrapper {
  position: relative;
  z-index: 1;
}

.intro-content {
  /* max-width: 900px; */
  padding-right: 30px;
}

.intro-content .section-label {
  font-size: 25px;
  color: #000;
  margin-bottom: 0;
  font-weight: bold;
}

.intro-content h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.3;
}

.slogan-img {
  width: 350px;
  display: block;
  margin: 5px 0 5px -6px;
}

.intro-desc p {
  max-width: 373px;
  font-size: 12px;
  color: #000;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* -webkit-box-orient: vertical; */
  /* line-clamp: 2; */
  overflow: hidden;
  font-weight: 350;
}

.intro-content .read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.intro-content .read-more:hover {
  text-decoration: underline;
}

/* .intro-desc p {
    font-size: 13px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 10px;
} */

.features-grid {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.feature-card {
  flex: 1;
  background-color: #ffffff;
  padding: 24px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  border: 1px solid rgba(0, 188, 212, 0.1);
  display: flex;
  flex-direction: column;
  min-width: 0;
  cursor: default;
}

.feature-card p,
.feature-card div {
  font-size: 10px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 0;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.card-top h4 {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  white-space: nowrap;
}

.card-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.card-icon img {
  width: 30px;
  height: 30px;
  display: block;
}

.line-sep {
  display: block;
  margin: 0 0 10px;
  width: 30px;
  height: 3px;
}

.services {
  background-color: #ffffff;
}
.section22 {
  background-color: #eff5fc;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.service-card {
  text-align: center;
}

.service-card .circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card:hover .circle {
  transform: scale(1.1);
}

.service-card:hover .circle img {
  transform: scale(1.15);
}

.service-card:hover h4 {
  color: var(--primary-color);
  font-weight: 700;
}

.service-info {
  max-width: 200px;
  margin: 0 auto;
}

.service-info h4,
.service-info .tag,
.service-info .service-desc {
  width: 100%;
}

.service-card h4 {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 500;
}

.service-card .tag {
  display: inline-block;
  background-color: #24a8b6;
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
}

.service-desc {
  font-size: 10px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-top: 10px;
  padding: 0 5px;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 11px;
  height: 18px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.carousel-arrow:hover {
  opacity: 0.7;
}

.carousel-arrow.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.carousel-arrow.disabled:hover {
  opacity: 0.25;
}

.doctor-card .doctor-info p {
  font-size: 11px;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.doctor-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background-image: url("../../../images/home-img/zjbj.png");
  background-size: cover;
  background-position: center;
  padding: 10px 10px 0 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.doctor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.doctor-card .avatar {
  flex-shrink: 0;
  width: 131px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}

.doctor-card .avatar img {
  width: 100%;
  display: block;
}

.doctor-card .doctor-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.doctor-card .doctor-info h4 {
  font-size: 17px;
  color: var(--text-dark);
  font-weight: 600;
}

.doctor-card .doctor-info .title {
  font-size: 13px;
  color: #000;
  font-weight: 500;
}

.doctor-card .doctor-info p {
  font-size: 11px;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

.doctor-card .doctor-info .btn-detail {
  align-self: flex-end;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cccccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots span:hover,
.carousel-dots span.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.contact-section {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-section .contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-section .contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 859px;
  margin: 0 auto;
}

.contact-left {
  position: absolute;
  top: -131px;
  left: -89px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  /* background: linear-gradient(90deg, #2f92a0, #396271); */
  color: #ffffff;
  padding: 8px 2px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: default;
}

.contact-btn img {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 291px;
}

.qrcode-section {
  position: absolute;
  top: 50%;
  left: 394px;
  padding: 25px;
  display: flex;
  gap: 35px;
  width: 557px;
  transform: translateY(-50%);
  border-radius: 8px;
}

.qrcode-section img {
  width: 180px;
  height: 180px;
}

.qrcode-section .text {
  text-align: left;
}

.qrcode-section .text h4 {
  font-size: 25px;
  /* margin-bottom: 10px; */
  font-weight: 500;
}

.qrcode-section .text p {
  font-size: 12px;
  /* color: rgba(255, 255, 255, 0.75); */
  line-height: 1.8;
}

footer {
  background-color: var(--bg-dark);
  padding: 55px 0;
  color: #ffffff;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1.5fr;
  gap: 45px;
}

.footer-logo {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 107px;
  margin-right: 14px;
  object-fit: cover;
}

.footer-logo-text {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-col h4 {
  font-size: 15px;
  /* margin-bottom: 20px; */
  color: #fff;
  font-weight: 600;
}
.dibucaid {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-col p {
  font-size: 10px;
  color: #c5cbd0;
  line-height: 1.3;
  /* margin-bottom: 10px; */
}

.footer-col .phone {
  margin-left: 24px;
  font-size: 20px;
  /* font-weight: 700; */
  color: #fff;
}

.footer-col .qrcode {
  width: 95px;
  height: 95px;
  margin-top: 10px;
  border-radius: 6px;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background-color: #ffffff;
  width: 599px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
  font-size: 14px;
  color: #666666;
  cursor: pointer;
  text-decoration: none;
  padding: 6px 24px;
  border: 1px solid #cccccc;
  border-radius: 884px;
  transition: all 0.3s ease;
  background-color: #e8f4f8;
  float: right;
  margin-top: -40px;
  margin-right: -4px;
}

.modal-close:hover {
  background-color: #d0e8f0;
}

.modal-header {
  display: flex;
  padding: 40px 40px 0 40px;
}

.modal-header .info {
  flex: 1;
  padding-right: 20px;
}

.modal-header .info h3 {
  font-size: 28px;
  color: #333333;
  margin-bottom: 12px;
  font-weight: 700;
}

.modal-header .info .title {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  background-color: #333333;
  padding: 4px 20px;
  margin-bottom: 18px;
  font-weight: 500;
}

.modal-header .info p {
  font-size: 13px;
  color: #666666;
  line-height: 1.8;
}

.modal-header .avatar {
  width: 187px;
  height: 277px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.modal-section {
  background-color: #e8f4f8;
  padding: 30px 40px 80px 30px;
}

.modal-section h4 {
  font-size: 18px;
  color: #333333;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}

.modal-section p {
  font-size: 14px;
  color: #333333;
  line-height: 1.8;
}

.modal-footer-img {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 15px;
}

.scroll-top {
  display: none;
}

/* ===== About page ===== */
.about-content {
  max-width: 850px;
  margin: 0 auto;
}

.about-content h3 {
  text-align: center;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 35px;
  font-weight: 600;
}

.about-content .main-image {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 35px;
}

.about-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 2.2;
  margin-bottom: 22px;
  text-align: justify;
}

.about-content h4 {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 18px;
  margin-top: 35px;
  font-weight: 600;
}

/* ===== Doctors page ===== */
.doctors-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.doctor-item {
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--primary-color);
}

.doctor-item .avatar {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-right: 35px;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.doctor-item .info {
  flex: 1;
}

.doctor-item .info h4 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.doctor-item .info .title {
  font-size: 15px;
  color: var(--primary-color);
  margin-bottom: 18px;
  font-weight: 500;
}

.doctor-item .info p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 2.1;
  margin-bottom: 20px;
}

/* ===== Equipment page ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.equipment-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.equipment-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.equipment-card .image {
  height: 190px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 15px;
}

.equipment-card h4 {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.equipment-card .subtitle {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 400;
}

/* ===== Equipment detail page ===== */
.equipment-detail {
  background-color: #ffffff;
  padding: 45px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.equipment-detail-header {
  text-align: center;
  margin-bottom: 35px;
}

.equipment-detail-header h3 {
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.equipment-detail-header .subtitle {
  font-size: 14px;
  color: var(--text-gray);
}

.equipment-detail-content {
  display: flex;
  gap: 45px;
  margin-bottom: 35px;
}

.equipment-detail-content .text {
  flex: 1;
}

.equipment-detail-content .text h4 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.equipment-detail-content .text .subtitle {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.equipment-detail-content .text p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 2.2;
}

.equipment-detail-content .image {
  width: 380px;
  height: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.other-equipment {
  margin-top: 45px;
}

.other-equipment h4 {
  text-align: center;
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 600;
}

/* ===== News page ===== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  box-shadow: var(--shadow-md);
}

.news-card .image {
  width: 260px;
  height: 170px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.news-card .content {
  flex: 1;
}

.news-card .content h4 {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.news-card .content .meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.news-card .content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 2;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 45px;
}

.pagination a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-gray);
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
}

.pagination a:hover,
.pagination a.active {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* ===== News detail page ===== */
.news-detail {
  background-color: #ffffff;
  padding: 45px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.news-detail-header {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 35px;
}

.news-detail-header h1 {
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.news-detail-header .meta {
  font-size: 13px;
  color: var(--text-light);
}

.news-detail-content {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 2.2;
}

.news-detail-content p {
  margin-bottom: 22px;
}

.news-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  display: block;
}

.news-nav {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.news-nav p {
  margin-bottom: 8px;
}

.news-nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.news-nav a:hover {
  color: var(--primary-color);
}
.footer-logo-text {
  margin-top: 10px;
  display: flex;
  align-items: center;
  color: white;
}
.footer-img-log {
  margin-right: 10px;
  width: 15px;
}
.footer-img-log2 {
  margin-right: 10px;
  width: 5px;
}
.footer-logo-text2 {
  margin-top: 10px;
  display: flex;
  align-items: top;
}
.footer-logo-text2-img {
  margin-top: 6px;
  margin-right: 10px;
  width: 15px;
  height: max-content;
}

/* ===== Responsive - 首页移动端适配 ===== */
@media (max-width: 768px) {
  /* Banner */
  .banner {
    height: 250px;
  }

  .banner-dots {
    bottom: 12px;
    gap: 8px;
  }

  .banner-dots span {
    width: 8px;
    height: 8px;
  }

  /* 公司简介 */
  .intro-content .section-label {
    font-size: 20px;
  }

  .slogan-img {
    width: 250px;
  }

  .features-grid {
    flex-wrap: wrap;
  }

  .feature-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  /* 诊疗项目 */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card .circle {
    width: 120px;
    height: 120px;
  }

  .service-card h4 {
    font-size: 13px;
  }

  /* 医生团队 */
  .doctor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .doctor-card .avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 120px;
  }

  .doctor-card .doctor-info {
    align-items: center;
  }

  .doctors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 联系区域 */
  .contact-content {
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .contact-left {
    position: absolute;
    width: 100%;
    gap: 12px;
    left: 24px;
    top: -73px;
  }

  .contact-desc {
    max-width: 85%;
    font-size: 15px;
    font-weight: 200;
    margin-left: 4px;
    line-height: 1.5;
  }

  .contact-section {
    height: 510px;
    padding: 30px 15px;
  }

  .qrcode-section {
    position: relative;
    top: 254px;
    left: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    width: 100%;
  }

  .qrcode-section .text {
    text-align: center;
  }

  .qrcode-section img {
    width: 150px;
    height: 150px;
  }

  /* 侧边栏在移动端缩小 */
  .sidebar-icons {
    right: 10px;
    gap: 6px;
  }

  .sidebar-icons .sidebar-item {
    width: 44px;
    height: 44px;
  }

  .sidebar-icons .sidebar-item img {
    width: 18px;
    height: 18px;
  }

  .sidebar-icons .sidebar-item span {
    font-size: 8px;
  }

  .sidebar-icons .sidebar-item img[alt="返回顶部"] {
    width: 14px !important;
    height: 18px !important;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 180px;
  }

  .features-grid {
    flex-direction: column;
  }

  .feature-card {
    width: 386px;
    flex: 1 1 100%;
  }

  .services-grid {
    /* grid-template-columns: 1fr; */
    gap: 15px;
  }

  .service-card .circle {
    width: 100px;
    height: 100px;
  }

  .doctor-card .avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 100px;
  }
}
