/* 重置样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
a {
  text-decoration: none;
  color: #333;
}
ul {
  list-style: none;
}
button, .button {
  background: #0071e3;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  margin-top: 18px;
  font-size: 16px;
}
button:hover, .button:hover {
  background: #005bb5;
}

/* 导航栏 */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
nav .logo {
  width: 100px;
  height: auto;
}
nav .logo img {
  width: 100%;
  height: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  display: inline-block;
  padding: 10px 0;
  color: #005bb5;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover {
  color: #005bb5;
  text-decoration: underline;
}
.dropdown {
  position: relative;
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 15px 20px;
  min-width: 500px;
  display: none;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.dropdown-content a {
  display: block;
  padding: 8px 0;
  color: #005bb5;
  text-decoration: none;
  font-weight: normal;
}
.dropdown-content a:hover {
  text-decoration: none;
  color: #0071e3;
}
/* 下拉菜单分级布局 */
.dropdown-content {
  display: none;
  flex-direction: column;
  min-width: 600px;
}
.dropdown:hover .dropdown-content {
  display: flex;
}
/* 第一级菜单 */
.dropdown-content .level1 {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 15px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 15px;
}
/* 第二级菜单 - Digital Therapeutics Intro的子项 */
.dropdown-content .level2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
/* 调整链接样式 */
.dropdown-content .level1 a {
  font-weight: 500;
}
.dropdown-content .level2 a {
  width: auto;
}
.dropdown:hover > a {
  color: #005bb5;
  text-decoration: underline;
}
.lang-switch {
  display: flex;
  gap: 10px;
}

/* Banner区 */
.banner {
  position: relative;
  padding: 120px 5%;
  background-image: url('../images/img_1.png'); /* 通铺背景图片 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 780px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.banner-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: right;
}
.banner-text h1 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}
.banner-text p {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
}

/* 内容块 */
.content-block {
  display: flex;
  padding: 90px 5%;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1700px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.content-block .block-img {
  flex: 0 0 500px;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px 0 0 10px;
}
.content-block:nth-child(3) .block-img {
  background-image: url('../images/img_2.png');
}
.content-block:nth-child(4) .block-img {
  background-image: url('../images/img_3.png');
}
.content-block .block-text {
  flex: 0 0 700px;
  padding: 60px;
  background: #ffffff;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.content-block h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #202124;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}
.content-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #5f6368;
  margin-bottom: 30px;
  font-weight: 400;
}
.content-block .button {
  background: #1a73e8;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.2s ease;
  font-size: 14px;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.content-block .button:hover {
  background: #1557b0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.product-name {
  color: #1a73e8;
  font-weight: 500;
}
.content-block.reverse {
  flex-direction: row-reverse;
}
.content-block.reverse .block-img {
  border-radius: 0 10px 10px 0;
}
.content-block.reverse .block-text {
  border-radius: 10px 0 0 10px;
}

/* 关于页Banner */
.about-banner {
  position: relative;
  padding: 240px 5%;
  background-image: url('../images/about_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  min-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.about-banner .banner-text {
  max-width: 700px;
  text-align: left;
  margin-right: 50px;
}
.about-banner h1 {
  font-size: 50px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.about-banner p {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
  opacity: 0.95;
}

/* 关于页特色区块 */
.about-feature {
  display: flex;
  align-items: center;
  padding: 150px 5%;
  background: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
}
.about-feature .feature-img {
  flex: 1;
  max-width: 600px;
}
.about-feature .feature-img img {
  width: 100%;
  height: auto;
  display: block;
}
.about-feature .feature-text {
  flex: 1;
  padding: 0 80px;
  max-width: 700px;
}
.about-feature .feature-text h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #202124;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.about-feature .feature-text p {
  font-size: 20px;
  line-height: 1.7;
  color: #5f6368;
  font-weight: 400;
}

/* 研究效率区块 */
.research-banner {
  position: relative;
  padding: 200px 5%;
  background-image: url('../images/about_3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  min-height: 800px;
  display: flex;
  align-items: center;
}
.research-banner .banner-text {
  max-width: 600px;
  text-align: left;
  margin-left: 50px;
}
.research-banner .banner-text h2 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.research-banner .banner-text p {
  font-size: 24px;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 400;
  opacity: 0.95;
}

/* 关于页使命区块 */
.our-mission {
  display: flex;
  align-items: center;
  padding: 150px 5%;
  background: #f8f9fa;
  max-width: 1400px;
  margin: 0 auto;
}
.our-mission .mission-img {
  flex: 1;
  max-width: 600px;
}
.our-mission .mission-img img {
  width: 100%;
  height: auto;
  display: block;
}
.our-mission .mission-text {
  flex: 1;
  padding: 80px;
  background: #ffffff;
  max-width: 600px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.our-mission .mission-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #202124;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.our-mission .mission-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #5f6368;
  font-weight: 400;
}

/* 产品页样式 */
.product-banner {
  position: relative;
  padding: 200px 5%;
  background-image: url('../images/scampi.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: left;
  color: #ffffff;
  min-height: 700px;
  display: flex;
  align-items: center;
}
/* Clinicopilot页面特定样式 */
.clinicopilot-banner {
  background-image: url('../images/Clinicopilot_1.png');
}
/* SmartCare页面特定样式 */
.smartcare-banner {
  background-image: url('../images/smartcare_1.png');
}
.section-img.img-smartcare-background {
  background-image: url('../images/smartcare_2.png');
  background-color: transparent;
}
.section-img.img-smartcare-solution {
  background-image: url('../images/smartcare_3.png');
  background-color: transparent;
}
.section-img.img-smartcare-how-it-works {
  background-image: url('../images/smartcare_4.png');
  background-color: transparent;
}
.section-img.img-smartcare-outcomes {
  background-image: url('../images/smartcare_5.png');
  background-color: transparent;
}
/* SmartCare页面区块特定样式 - 减小间距 */
.product-banner.smartcare-banner + .product-section,
.product-section.smartcare-specific + .product-section.smartcare-specific {
  margin-top: 0 !important;
}
/* 为SmartCare页面的product-section添加特定样式，确保间距减小 */
.product-section.smartcare-specific {
  padding: 10px 5% !important;
  margin: 0 !important;
}
/* 确保图片高度一致 */
.product-section.smartcare-specific .section-img {
  height: 550px !important;
}
/* 确保文字区域内边距一致 */
.product-section.smartcare-specific .section-text {
  padding: 40px 60px !important;
}

/* HooHoo Frog页面特定样式 */
/* Banner图片 - 调小高度 */
.hoohoofrog-banner {
  background-image: url('../images/hoo_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px; /* 调小banner高度 */
  padding: 100px 5%; /* 调小内边距 */
}
/* 各个板块的图片 */
.section-img.img-hoohoofrog-background {
  background-image: url('../images/hoo_2.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-img.img-hoohoofrog-solution {
  background-image: url('../images/hoo_3.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 第三个板块 - How It Works，确保图片完全显示 */
.section-img.img-hoohoofrog-how-it-works {
  background-image: url('../images/hoo_4.png');
  background-color: transparent;
  background-size: contain; /* 改为contain确保图片完全显示 */
  background-position: center;
  background-repeat: no-repeat;
}
.section-img.img-hoohoofrog-outcomes {
  background-image: url('../images/hoo_5.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 调整HooHoo Frog区块的高度和间距 */
.hoohoofrog-banner + .product-section,
.product-section:has(.img-hoohoofrog-background) + .product-section,
.product-section:has(.img-hoohoofrog-solution) + .product-section,
.product-section:has(.img-hoohoofrog-how-it-works) + .product-section {
  margin-top: 0;
}
.product-section:has(.img-hoohoofrog-background),
.product-section:has(.img-hoohoofrog-solution),
.product-section:has(.img-hoohoofrog-how-it-works),
.product-section:has(.img-hoohoofrog-outcomes) {
  padding: 40px 5%; /* 调小内边距，整体减小区块高度 */
}
.product-section:has(.img-hoohoofrog-background) .section-img,
.product-section:has(.img-hoohoofrog-solution) .section-img,
.product-section:has(.img-hoohoofrog-how-it-works) .section-img,
.product-section:has(.img-hoohoofrog-outcomes) .section-img {
  height: 500px; /* 调小图片高度 */
}

/* ToothyGuard Adventure页面特定样式 */
/* Banner图片 - 调小高度 */
.toothyguard-banner {
  background-image: url('../images/too_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px; /* 调小banner高度 */
  padding: 100px 5%; /* 调小内边距 */
}
/* 各个板块的图片 */
.section-img.img-toothyguard-background {
  background-image: url('../images/too_2.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-img.img-toothyguard-solution {
  background-image: url('../images/too_3.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 第三个板块 - How It Works，确保图片完全显示 */
.section-img.img-toothyguard-how-it-works {
  background-image: url('../images/too_4.png');
  background-color: transparent;
  background-size: contain; /* 改为contain确保图片完全显示 */
  background-position: center;
  background-repeat: no-repeat;
}
.section-img.img-toothyguard-outcomes {
  background-image: url('../images/too_5.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 调整ToothyGuard Adventure区块的高度和间距 */
.toothyguard-banner + .product-section,
.product-section:has(.img-toothyguard-background) + .product-section,
.product-section:has(.img-toothyguard-solution) + .product-section,
.product-section:has(.img-toothyguard-how-it-works) + .product-section {
  margin-top: 0;
}
.product-section:has(.img-toothyguard-background),
.product-section:has(.img-toothyguard-solution),
.product-section:has(.img-toothyguard-how-it-works),
.product-section:has(.img-toothyguard-outcomes) {
  padding: 40px 5%; /* 调小内边距，整体减小区块高度 */
}
.product-section:has(.img-toothyguard-background) .section-img,
.product-section:has(.img-toothyguard-solution) .section-img,
.product-section:has(.img-toothyguard-how-it-works) .section-img,
.product-section:has(.img-toothyguard-outcomes) .section-img {
  height: 500px; /* 调小图片高度 */
}
.section-img.img-clinicopilot-background {
  background-image: url('../images/Clinicopilot_2.png');
  background-color: transparent;
}
.section-img.img-clinicopilot-solution {
  background-image: url('../images/Clinicopilot_3.png');
  background-color: transparent;
}
.section-img.img-clinicopilot-how-it-works {
  background-image: url('../images/Clinicopilot_4.png');
  background-color: transparent;
}
.section-img.img-clinicopilot-outcomes {
  background-image: url('../images/Clinicopilot_5.png');
  background-color: transparent;
}
/* 调整所有Clinicopilot区块的整体高度，保持一致 */
.product-section.background-section:not(.smartcare-specific),
.product-section.solution-section:not(.smartcare-specific),
.product-section.how-it-works-section:not(.smartcare-specific),
.product-section.outcomes-section:not(.smartcare-specific) {
  padding: 100px 5%;
}
.product-section.background-section:not(.smartcare-specific) .section-img,
.product-section.solution-section:not(.smartcare-specific) .section-img,
.product-section.how-it-works-section:not(.smartcare-specific) .section-img,
.product-section.outcomes-section:not(.smartcare-specific) .section-img {
  height: 600px;
}
.product-section.background-section:not(.smartcare-specific) .section-text,
.product-section.solution-section:not(.smartcare-specific) .section-text,
.product-section.how-it-works-section:not(.smartcare-specific) .section-text,
.product-section.outcomes-section:not(.smartcare-specific) .section-text {
  padding: 50px 70px;
}
.product-banner h1 {
  font-size: 54px;
  font-weight: 600;
  max-width: 900px;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}
.product-section {
  display: flex;
  padding: 60px 5%;
  align-items: center;
}
.product-section.reverse {
  flex-direction: row-reverse;
}
.section-img {
  flex: 1;
  height: 450px;
  background: #ddd; /* 图片/架构图占位 */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.section-img.img-background {
  background-image: url('../images/scampi_2.png');
  background-color: transparent;
}
.section-img.img-solution {
  background-image: url('../images/scampi_3.png');
  background-color: transparent;
}
.section-img.img-how-it-works {
  background-image: url('../images/scampi_4.png');
  background-color: transparent;
}
.section-img.img-outcomes {
  background-image: url('../images/scampi_5.png');
  background-color: transparent;
}
/* 专门调整各个区块的高度，保持一致 */
.solution-section, .how-it-works-section, .outcomes-section {
  padding: 80px 5%;
}
.solution-section .section-img, .how-it-works-section .section-img, .outcomes-section .section-img {
  height: 550px;
}
.solution-section .section-text, .how-it-works-section .section-text, .outcomes-section .section-text {
  padding: 40px 60px;
}
.section-text {
  flex: 1;
  padding: 30px 50px;
}
.section-text h2 {
  font-size: 32px;
  margin-bottom: 30px;
  line-height: 1.5;
}
.section-text p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* 联系页样式 */
.contact-banner {
  padding: 150px 5%;
  background-image: url('../images/contact_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-banner h1 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.contact-section {
  display: flex;
  padding: 80px 5%;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.contact-form {
  flex: 1;
  padding: 50px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form label {
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: #ffffff;
  transition: border-color 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #1a73e8;
}
.contact-form button {
  align-self: flex-start;
  padding: 12px 24px;
  background: #1a73e8;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 10px;
}
.contact-form button:hover {
  background: #1557b0;
}
.contact-details {
  flex: 1;
  padding: 50px;
  background: #f8f9fa;
}
.contact-details h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #202124;
  font-weight: 600;
}
.contact-details p {
  margin-bottom: 15px;
  color: #5f6368;
  line-height: 1.6;
}
.contact-details .map {
  width: 100%;
  height: 300px;
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
  background-image: url('../images/map.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 页脚 */
footer {
  padding: 60px 5%;
  background: #ffffff;
  margin-top: 70px;
  border-top: 1px solid #e8eaed;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 120px;
}
.footer-logo {
  width: 220px;
}
.footer-logo-img {
  width: 100%;
  height: auto;
}
.footer-description {
  flex: 1;
  max-width: 500px;
}
.footer-description p {
  color: #5f6368;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Digital Therapeutics Intro页面特定样式 */
/* Banner图片 */
.digital-therapeutics-banner {
  background-image: url('../images/digital_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px; /* 调大banner高度 */
  padding: 120px 5%; /* 调大内边距 */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.digital-therapeutics-banner h1 {
  color: #fff; /* 文字颜色为白色 */
  font-size: 48px; /* 调整字体大小 */
  max-width: 600px;
  text-align: right; /* 文字右对齐 */
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* 添加文字阴影 */
}
/* 调整所有Digital Therapeutics区块的整体高度，保持一致且适当提高高度 */
.digital-therapeutics-banner + .product-section,
.product-section:has(.img-digital-background) + .product-section,
.product-section:has(.img-digital-solution) + .product-section,
.product-section:has(.img-digital-how-it-works) + .product-section {
  margin-top: 0;
}
.product-section:has(.img-digital-background),
.product-section:has(.img-digital-solution),
.product-section:has(.img-digital-how-it-works),
.product-section:has(.img-digital-outcomes) {
  padding: 60px 5%; /* 适当调大内边距，整体提高区块高度 */
}
.product-section:has(.img-digital-background) .section-img,
.product-section:has(.img-digital-solution) .section-img,
.product-section:has(.img-digital-how-it-works) .section-img,
.product-section:has(.img-digital-outcomes) .section-img {
  height: 550px; /* 适当调大图片高度 */
}
/* 各个板块的图片 */
.section-img.img-digital-background {
  background-image: url('../images/digital_2.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-img.img-digital-solution {
  background-image: url('../images/digital_3.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-img.img-digital-how-it-works {
  background-image: url('../images/digital_4.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-img.img-digital-outcomes {
  background-image: url('../images/digital_5.png');
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* DTx Products Section - Learn more about our DTx */
.dtx-products-section {
  padding: 80px 5%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dtx-section-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  width: 100%;
  flex-wrap: wrap;
}
.dtx-products-section h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 0;
  text-align: left;
  flex: 0 0 220px;
  line-height: 1.2;
  font-weight: bold;
}
.dtx-products-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex: 1;
  min-width: 600px;
  flex-wrap: nowrap;
}
.dtx-product-card {
  flex: 1;
  text-align: center;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dtx-product-img {
  height: 320px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 25px;
  width: 100%;
}
.dtx-product-img.img-digital-scampi {
  background-image: url('../images/digital_6.png');
}
.dtx-product-img.img-digital-hoohoo {
  background-image: url('../images/digital_7.png');
}
.dtx-product-img.img-digital-toothy {
  background-image: url('../images/digital_8.png');
}
.dtx-product-card h3 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: normal;
  text-align: center;
  margin: 0;
  width: 100%;
}
.dtx-product-card h3 a {
  color: #0071e3;
  text-decoration: none;
  display: block;
}
.dtx-product-card h3 a:hover {
  text-decoration: underline;
}
.footer-links {
  display: flex;
  gap: 160px;
  align-items: flex-start;
}
.quick-links, .our-products {
  min-width: 180px;
}
.footer-links h4 {
  margin-bottom: 20px;
  color: #202124;
  font-size: 22px;
  font-weight: 500;
}
.footer-links a {
  display: block;
  margin-bottom: 14px;
  color: #5f6368;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #1a73e8;
}