* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #102a43;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section.bg-gray {
  background: linear-gradient(180deg, #f8fbfd 0%, #f2f8fb 100%);
}

.section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0b2c56;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.section h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #303467 0%, #26b4a5 100%);
}

.section-desc {
  text-align: center;
  font-size: 16px;
  color: #6b7b93;
  max-width: 800px;
  margin: 0 auto 40px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #303467 0%, #26b4a5 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(38, 180, 165, 0.18);
}

.card2 {
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(8, 31, 61, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card2:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(8, 31, 61, 0.12);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.3);
}

.btn-primary {
  width: 100%;
  justify-content: center;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(11, 20, 33, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #00e5cc;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: #00e5cc;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #303467 0%, #26b4a5 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(38, 180, 165, 0.2);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 20px;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: #0b2c56;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-btn {
  background: linear-gradient(135deg, #303467 0%, #26b4a5 100%);
  color: #fff !important;
  text-align: center;
  border-radius: 8px;
  margin-top: 8px;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  color: #fff;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #00e5cc;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(8, 31, 61, 0.07);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(8, 31, 61, 0.12);
}

.card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b2c56;
  margin-bottom: 12px;
}

.brand-card {
  text-align: center;
}

.brand-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.brand-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b2c56;
  margin-bottom: 12px;
}

.brand-card p {
  font-size: 16px;
  color: #6b7b93;
  line-height: 1.7;
}

.card p {
  font-size: 16px;
  color: #6b7b93;
  line-height: 1.6;
}

.tech-card {
  position: relative;
  overflow: hidden;
  color: #333;
  background-size: cover;
  background-position: center;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 45%, rgba(255, 255, 255, 0.18) 100%);
  z-index: 0;
}

.tech-card h3,
.tech-card p {
  position: relative;
  z-index: 1;
}

.tech-card h3 {
  color: #073b76;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.tech-card p {
  color: #102a43;
  font-weight: 500;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #00e5cc;
  color: #0b2c56;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.tech-card p {
  /* color: rgba(255, 255, 255, 0.9); */
}

.clinical-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.clinical-card .card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.clinical-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinical-card .card-body {
  padding: 20px;
}

.clinical-card .card-body h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.clinical-card .card-body p {
  font-size: 16px;
  margin-bottom: 6px;
  color: #5a6a80;
}

.service-card {
  text-align: center;
  padding: 24px 24px 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(8, 31, 61, 0.04);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f9fc 100%);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b2c56;
  line-height: 1.45;
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 44px 0;
  align-items: stretch;
}

.step {
  background: #fff;
  border: 1px solid #d8e5f6;
  border-radius: 14px;
  min-height: 250px;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  box-shadow: 0 8px 24px rgba(8, 31, 61, 0.06);
}

.step img {
  width: 100%;
  max-width: 170px;
  height: 118px;
  object-fit: contain;
  margin: 4px 0 12px;
}

.step span {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #0b2c56;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow::after {
  content: '';
  width: 36px;
  height: 16px;
  background: linear-gradient(90deg, #c8ddfa 0%, #8bb9ef 100%);
  clip-path: polygon(0 0, 72% 0, 72% 0, 100% 50%, 72% 100%, 72% 100%, 0 100%, 18% 50%);
  border-radius: 2px;
}

.quality-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.quality-left h2 {
  text-align: left;
}

.quality-left h2::after,
.contact-info h2::after {
  margin-left: 0;
  margin-right: 0;
}

.quality-left img {
  width: 100%;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 14px 34px rgba(8, 31, 61, 0.1);
}

.quality-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 43px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(8, 31, 61, 0.04);
  box-shadow: 0 8px 22px rgba(8, 31, 61, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(8, 31, 61, 0.1);
}

.quality-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}

.quality-item span {
  font-size: 16px;
  font-weight: 500;
  color: #0b2c56;
}

.logos-grid {
  gap: 16px;
}

.logo-item {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 31, 61, 0.04);
  box-shadow: 0 8px 22px rgba(8, 31, 61, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(8, 31, 61, 0.1);
}

.logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 18px 48px rgba(8, 31, 61, 0.08);
}

.contact-info h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: #374151;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00c853;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(8, 31, 61, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  color: #0b2c56;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fbfdff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0077b6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.privacy-text {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 16px;
}

.site-footer {
  background: linear-gradient(135deg, #303467 0%, #26b4a5 100%);
  color: #eef5ff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 16px;
  margin-bottom: 4px;
  opacity: 0.9;
}

.footer-address h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}

.footer-address p {
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.86;
  margin-bottom: 18px;
  max-width: 620px;
}

.footer-address p:last-child {
  margin-bottom: 0;
}

.footer-qr {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
}

.qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.qr-wrap img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
}

.qr-wrap span {
  font-size: 12px;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 16px;
  opacity: 0.7;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #00c853;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.success-icon svg {
  width: 36px;
  height: 36px;
}

.error-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #e54848;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.error-icon svg {
  width: 36px;
  height: 36px;
}

.modal-content.error-modal-content h3 {
  color: #e54848;
}

.modal-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0b2c56;
  margin-bottom: 12px;
}

.modal-content p {
  font-size: 15px;
  color: #6b7b93;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .container {
    width: min(96vw, 1024px);
  }

  .nav-links {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .section h2 {
    font-size: 28px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .quality-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .contact-info h2 {
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-qr {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .steps,
  #service .steps {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin: 28px 0 20px !important;
  }
  
  .step,
  #service .step {
    width: auto !important;
    height: auto !important;
    min-height: 140px !important;
    padding: 16px 8px !important;
    border-radius: 12px !important;
    grid-column: auto !important;
  }
  
  .step-number,
  #service .step-number {
    width: 28px !important;
    height: 28px !important;
    font-size: 14px !important;
    top: -8px !important;
    left: -8px !important;
  }
  
  .step img,
  #service .step img {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    margin: 8px 0 !important;
  }
  
  .step span:not(.step-number),
  #service .step span {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
  .hero {
    min-height: 60vh;
  }

  .quality-left h2::after,
  .contact-info h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 22px;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: 24px;
  }

  .section-desc {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .grid-2,
  .grid-3,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .quality-right .grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .quality-left h2 {
    text-align: center;
  }

  .logos-grid {
    display: grid;
    grid-template-columns: none;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .logos-grid::-webkit-scrollbar {
    display: none;
  }

  .logos-grid .logo-item {
    min-width: 0;
    scroll-snap-align: start;
    box-shadow: none;
  }

  .tech-card {
    min-height: 120px;
    padding: 28px 24px;
    background-size: cover;
    background-position: center;
  }

  .tech-card h3 {
    font-size: 22px;
    line-height: 1.35;
  }

  .card {
    padding: 24px;
  }

  .clinical-card .card-img {
    height: 180px;
  }

  #service .grid-5 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  #service .service-card {
    grid-column: span 2;
    min-height: 210px;
    padding: 18px 8px 16px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  #service .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  #service .service-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .step-arrow {
    display: none;
  }

  .service-card img {
    width: 100%;
    height: 96px;
    margin-bottom: 20px;
    object-fit: contain;
  }

  .service-card h3 {
    font-size: 16px;
    line-height: 1.45;
  }

  .quality-item {
    padding: 10px 4px;
  }

  .quality-item img {
    width: 32px;
    height: 32px;
  }

  .quality-item span {
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }

  .contact-wrap {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .footer-address h4 {
    margin-top: 16px;
  }

  .qr-wrap img {
    width: 120px;
    height: 120px;
  }

  .modal-content {
    padding: 30px;
    margin: 20px;
  }

  .tech-card p {
    display: none;
  }
}

@media (max-width: 480px) {
  #service .step {
    min-height: 170px;
    padding: 10px 6px;
  }
  
  #service .step img {
    max-width: 102px;
    height: 68px;
  }
  
  #service .step span {
    font-size: 12px;
  }
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  .section {
    padding: 30px 0;
  }

  .section h2 {
    font-size: 22px;
  }

  .card {
    padding: 16px;
  }

  .card img {
    width: 90px;
    height: 50px;
    margin-bottom: 12px;
  }

  .card h3 {
    font-size: 16px;
  }

  .tech-card {
    min-height: 150px;
    padding: 32px 16px;
    border-radius: 14px;
  }

  .tech-card h3 {
    font-size: 20px;
    line-height: 1.4;
  }

  .clinical-card .card-img {
    height: 140px;
  }

  .steps {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px 8px;
  }

  .step {
    width: 102px;
    height: 102px;
    padding: 10px;
  }

  .step img {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
  }

  .step span {
    font-size: 12px;
    line-height: 1.3;
  }

  .service-card {
    min-height: 200px;
    padding: 16px 8px;
  }

  .service-card img {
    height: 90px;
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-size: 15px;
    line-height: 1.45;
  }

  .logo-item {
    padding: 12px;
  }

  .contact-info li {
    font-size: 16px;
  }

  .footer-brand img {
    height: 36px;
  }

  .qr-wrap img {
    width: 120px;
    height: 120px;
  }

  .success-icon {
    width: 56px;
    height: 56px;
  }

  .success-icon svg {
    width: 28px;
    height: 28px;
  }
}

#service .steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 40px 0;
}

#service .step-arrow {
  display: none;
}

#service .step {
  width: auto;
  height: auto;
  min-height: 260px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #d9e6f8;
  box-shadow: 0 8px 24px rgba(8, 31, 61, 0.06);
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

#service .step img {
  width: 100%;
  max-width: 182px;
  height: 130px;
  object-fit: contain;
  margin: 4px 0 14px;
}

#service .step span {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #0b2c56;
}

#service .step-arrow {
  display: none;
}
