:root {
  --site-red: #e60000;
  --site-red-dark: #c90000;
  --site-red-soft: #fff3f0;
  --orange: #ff7048;
  --ink: #222831;
  --text: #333333;
  --muted: #6f7782;
  --line: #e6e6e6;
  --soft: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(52, 62, 72, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.portal-header {
  background: #fff;
}

.portal-banner {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: url("assets/banner_bg1.jpg") no-repeat center 0;
}

.banner-tools {
  position: absolute;
  top: 20px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  margin: 0;
  padding: 0 10px;
  color: #fff;
  font-size: 15px;
  line-height: 38px;
  list-style: none;
  background: #d80e0e;
  border-radius: 5px;
}

.banner-tools span {
  color: rgba(255, 255, 255, 0.65);
}

.banner-inner {
  position: relative;
  width: 1200px;
  height: 330px;
  margin: 0 auto;
  padding-top: 50px;
}

.brand-slogan {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.gov-brand {
  display: block;
  width: 500px;
  height: 82px;
}

.gov-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.city-slogan {
  width: 600px;
  margin-top: 20px;
}

.city-slogan img {
  display: block;
  max-width: 100%;
  margin-left: auto;
}

.city-slogan img + img {
  margin-top: 8px;
}

.site-search {
  display: flex;
  width: 280px;
  height: 36px;
  align-items: center;
  justify-content: flex-end;
  margin: 10px 0 0 auto;
  background: url("assets/ico_searchbg.png") no-repeat center / 280px 36px;
}

.site-search input {
  width: 220px;
  height: 32px;
  margin-top: 2px;
  color: #555;
  font-size: 14px;
  border: 0;
  outline: 0;
  background: transparent;
}

.site-search button {
  display: flex;
  width: 25px;
  height: 27px;
  align-items: center;
  justify-content: center;
  margin: 4px 8px 0 3px;
  background: url("assets/ico_search.png") no-repeat center;
  background-size: contain;
  border: 0;
  cursor: pointer;
}

.site-search svg {
  display: none;
}

.site-nav {
  background: #d80e0e;
}

.nav-inner {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  width: min(1200px, 100%);
  margin: 0 auto;
}

.site-nav a {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background: #d80e0e;
}

.site-nav a:hover,
.site-nav a.active {
  background: #ff6666;
}

.nav-icon {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.nav-icon.home::before {
  inset: 12px 5px 4px;
  border: 4px solid currentColor;
  border-top: 0;
  border-radius: 3px;
}

.nav-icon.home::after {
  left: 4px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-left: 4px solid currentColor;
  border-top: 4px solid currentColor;
  transform: rotate(45deg);
}

.nav-icon.file::before,
.nav-icon.news::before,
.nav-icon.ask::before {
  inset: 4px 5px;
  border: 4px solid currentColor;
  border-radius: 2px;
}

.nav-icon.file::after,
.nav-icon.news::after,
.nav-icon.ask::after {
  left: 11px;
  right: 9px;
  top: 13px;
  height: 12px;
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
}

.nav-icon.service::before {
  left: 3px;
  right: 3px;
  bottom: 5px;
  height: 8px;
  border: 4px solid currentColor;
}

.nav-icon.service::after {
  left: 8px;
  right: 8px;
  top: 5px;
  height: 17px;
  border: 4px solid currentColor;
  border-bottom: 0;
}

.nav-icon.invest::before,
.nav-icon.org::before {
  left: 14px;
  top: 4px;
  width: 6px;
  height: 26px;
  background: currentColor;
}

.nav-icon.invest::after,
.nav-icon.org::after {
  left: 4px;
  top: 14px;
  width: 26px;
  height: 16px;
  border: 4px solid currentColor;
  border-top: 0;
}

.nav-icon.mountain::before {
  left: 2px;
  right: 2px;
  bottom: 5px;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 25px solid currentColor;
}

.page-main {
  background: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  color: #777;
  font-size: 14px;
}

.breadcrumb strong {
  color: #333;
  font-weight: 400;
}

.section {
  padding: 58px 0 66px;
}

.overview-section {
  overflow: hidden;
  padding-top: 48px;
  background: #fff;
}

.investment-section {
  background: #f4f4f4;
}

.services-section {
  background: #fff;
}

.section-title p {
  display: none;
}

.section-title h1,
.section-title h2 {
  position: relative;
  margin: 0;
  padding-bottom: 22px;
  color: #252a31;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-title h1::after,
.section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 4px;
  background: #d3382c;
}

.center-title {
  margin-bottom: 32px;
}

.center-title h2::after {
  left: 0;
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.88fr);
  align-items: center;
  gap: 58px;
}

.overview-copy {
  min-width: 0;
}

.lead {
  margin: 30px 0 30px;
  color: #2b2f35;
  font-size: 20px;
  line-height: 2.05;
}

.overview-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.overview-menu-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 650px;
}

.overview-menu a {
  position: relative;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  padding: 18px 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f8f8f8);
  border: 1px solid #eeeeee;
  border-radius: 3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.overview-menu a::before {
  content: attr(data-mark);
  position: absolute;
  right: 14px;
  bottom: -12px;
  color: rgba(216, 14, 14, 0.045);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.overview-menu a:hover {
  transform: translateY(-3px);
  border-color: #f5c7c1;
  box-shadow: 0 12px 26px rgba(216, 14, 14, 0.12);
}

.overview-menu strong {
  position: relative;
  z-index: 1;
  color: #2e3339;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
}

.overview-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  color: #d80e0e;
  background: #fff3f0;
  border: 1px solid #ffd6cf;
  border-radius: 50%;
}

.overview-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-overview-industrial {
  --card-accent: #d80e0e;
}

.industry-overview-forestry {
  --card-accent: #2f8a57;
}

.industry-overview-agriculture {
  --card-accent: #d07a20;
}

.industry-overview-tourism {
  --card-accent: #b94040;
}

.overview-industry .overview-icon {
  color: var(--card-accent);
  background: color-mix(in srgb, var(--card-accent) 8%, #fff);
  border-color: color-mix(in srgb, var(--card-accent) 22%, #fff);
}

.overview-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 552 / 320;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(52, 62, 72, 0.12);
  background: #f6f6f6;
}

.overview-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.industry-card {
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(39, 48, 58, 0.08);
}

.industry-cover {
  position: relative;
  display: grid;
  min-height: 176px;
  place-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.industry-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(180, 36, 28, 0.36);
}

.industry-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.32), transparent 18%);
}

.industry-cover span {
  position: relative;
  z-index: 1;
  font-size: 25px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.industry-card .industry-cover span {
  color: #ffffff;
}

.industry-industrial .industry-cover {
  background-image: url("http://www.lianzhou.gov.cn/global/lianzhou-panorama.png");
  background-position: 50% 42%;
}

.industry-forestry .industry-cover {
  background-image: url("http://www.lianzhou.gov.cn/global/lianzhou-panorama.png");
  background-position: 78% 70%;
}

.industry-agriculture .industry-cover {
  background-image: url("http://www.lianzhou.gov.cn/global/lianzhou-panorama.png");
  background-position: 18% 72%;
}

.industry-tourism .industry-cover {
  background-image: url("http://www.lianzhou.gov.cn/global/lianzhou-panorama.png");
  background-position: 62% 38%;
}

.industry-industrial .industry-cover::before {
  background: linear-gradient(135deg, rgba(134, 22, 60, 0.68), rgba(202, 54, 38, 0.42));
}

.industry-forestry .industry-cover::before {
  background: linear-gradient(135deg, rgba(28, 102, 61, 0.74), rgba(61, 128, 82, 0.45));
}

.industry-agriculture .industry-cover::before {
  background: linear-gradient(135deg, rgba(191, 105, 28, 0.72), rgba(221, 75, 35, 0.42));
}

.industry-tourism .industry-cover::before {
  background: linear-gradient(135deg, rgba(34, 96, 150, 0.65), rgba(206, 48, 42, 0.36));
}

.industry-body {
  padding: 24px 26px 28px;
}

.industry-body ul {
  display: grid;
  gap: 16px;
  min-height: 132px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.industry-body li {
  position: relative;
  min-width: 0;
  padding-left: 17px;
  color: #30343a;
  font-size: 16px;
  line-height: 1.45;
}

.industry-body li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  background: #df5b35;
}

.industry-body a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.more-link {
  display: block;
  padding: 12px 16px;
  color: #8c9aab;
  text-align: center;
  border: 1px solid #dde3ea;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.more-link:hover {
  color: #fff;
  background: var(--site-red);
  border-color: var(--site-red);
}

.service-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.service-category {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  padding: 24px 24px;
  color: #1457a6;
  background: linear-gradient(135deg, #e9f6ff, #f8fbff);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(41, 73, 104, 0.08);
}

.service-category::before,
.service-category::after {
  content: "";
  position: absolute;
}

.service-category::before {
  right: 18px;
  bottom: 16px;
  width: 72px;
  height: 72px;
  opacity: 0.46;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.service-category::after {
  right: 28px;
  bottom: 25px;
  width: 48px;
  height: 48px;
  opacity: 0.72;
  background: currentColor;
  clip-path: polygon(50% 0, 92% 26%, 92% 74%, 50% 100%, 8% 74%, 8% 26%);
}

.service-category span {
  position: relative;
  z-index: 1;
  font-size: 21px;
  font-weight: 700;
}

.service-category.policy {
  color: #d80e0e;
  background: linear-gradient(135deg, #fff1ef, #fff8f4);
}

.service-category.enterprise {
  color: #21815d;
  background: linear-gradient(135deg, #e8f8f0, #f8fffb);
}

.service-category.factory {
  color: #b76a1f;
  background: linear-gradient(135deg, #fff2df, #fffaf3);
}

.service-category.education {
  color: #2d66b3;
  background: linear-gradient(135deg, #e9f2ff, #fbfdff);
}

.service-category.medical {
  color: #b84056;
  background: linear-gradient(135deg, #fff0f4, #fff9fb);
}

.service-category.policy::after {
  clip-path: polygon(14% 12%, 86% 12%, 86% 84%, 50% 70%, 14% 84%);
}

.service-category.enterprise::after {
  clip-path: polygon(50% 4%, 72% 30%, 96% 34%, 80% 56%, 84% 86%, 50% 70%, 16% 86%, 20% 56%, 4% 34%, 28% 30%);
}

.service-category.factory::after {
  clip-path: polygon(8% 84%, 8% 40%, 36% 56%, 36% 36%, 64% 52%, 64% 20%, 88% 20%, 88% 84%);
}

.service-category.education::after {
  clip-path: polygon(50% 6%, 96% 30%, 50% 54%, 4% 30%);
}

.service-category.medical::after {
  clip-path: polygon(38% 8%, 62% 8%, 62% 36%, 90% 36%, 90% 60%, 62% 60%, 62% 88%, 38% 88%, 38% 60%, 10% 60%, 10% 36%, 38% 36%);
}

.business-panel {
  margin-top: 42px;
}

.business-title {
  margin-bottom: 30px;
}

.business-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
}

.business-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 34px 26px 28px;
  color: #fff;
  background: #c4342c;
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(37, 52, 68, 0.12);
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.32), transparent 24%);
}

.business-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.business-card.build {
  background: linear-gradient(135deg, #3e7dc8, #c93d33);
}

.business-card.theme {
  background: linear-gradient(135deg, #5f6f82, #d24a3c);
}

.business-card.startup {
  background: linear-gradient(135deg, #2b8b73, #c53b32);
}

.business-card.finance {
  background: linear-gradient(135deg, #bd7a26, #cf3830);
}

.business-visual,
.business-card strong,
.business-card em {
  position: relative;
  z-index: 1;
}

.business-visual {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.business-visual svg {
  width: 46px;
  height: 46px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-card strong {
  display: block;
  min-height: 58px;
  font-size: 23px;
  line-height: 1.28;
}

.business-card em {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
}

.contact-panel {
  margin-top: 54px;
}

.contact-title {
  margin-bottom: 30px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 34px;
  align-items: center;
  padding: 34px 42px;
  background:
    linear-gradient(120deg, rgba(216, 14, 14, 0.08), rgba(255, 255, 255, 0) 42%),
    #fff;
  border: 1px solid #eee;
  border-top: 4px solid #d80e0e;
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(37, 52, 68, 0.08);
}

.contact-kicker {
  margin: 0 0 14px;
  color: #d80e0e;
  font-size: 18px;
  font-weight: 700;
}

.hotline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hotline-list a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 22px;
  color: #d80e0e;
  font-size: 28px;
  font-weight: 800;
  background: #fff6f4;
  border: 1px solid #f4c7c1;
  border-radius: 4px;
}

.contact-note {
  margin: 18px 0 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.qr-block {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-left: 30px;
  border-left: 1px solid #eeeeee;
}

.qr-block img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
}

.qr-block span {
  color: #555;
  font-size: 14px;
}

.portal-footer {
  border-top: 5px solid var(--site-red);
  background: #eeeeee;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 245px;
  gap: 30px;
  width: min(1260px, calc(100% - 48px));
  min-height: 250px;
  align-items: center;
  margin: 0 auto;
  padding: 34px 0;
}

.footer-brand {
  min-height: 190px;
  padding-right: 34px;
  border-right: 1px solid #cfcfcf;
}

.footer-brand img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  margin: 72px auto 0;
}

.footer-info {
  min-height: 190px;
  padding: 12px 0 0;
  color: #000;
  font-size: 19px;
  line-height: 1.75;
}

.footer-info p {
  margin: 0 0 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-badges {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px 18px;
  min-height: 190px;
  align-content: center;
  justify-content: center;
  padding-left: 42px;
  border-left: 1px solid #cfcfcf;
}

.badge {
  display: grid;
  min-height: 56px;
  place-items: center;
  padding: 8px;
  color: #333;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  background: #f8f8f8;
  border: 1px solid #d7d7d7;
}

.badge-red {
  grid-row: span 2;
  width: 62px;
  height: 70px;
  align-self: start;
  color: #ffda8a;
  font-size: 13px;
  background: linear-gradient(145deg, #c94029, #8e2a19);
  border-color: #cfb38d;
  border-radius: 7px;
}

.badge-search {
  color: #cf1010;
}

.badge-access {
  color: #222;
}

@media (max-width: 1280px) {
  .banner-inner {
    width: min(1200px, calc(100% - 40px));
  }

  .site-nav a {
    font-size: 21px;
  }
}

@media (max-width: 1100px) {
  .banner-inner {
    width: min(100% - 40px, 1200px);
  }

  .city-slogan {
    display: none;
  }

  .site-search {
    margin-top: 96px;
  }

  .nav-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .overview-layout {
    grid-template-columns: 1fr;
  }

  .overview-photo {
    max-width: 552px;
  }

  .overview-photo img {
    height: 100%;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .portal-banner,
  .banner-inner {
    height: 310px;
  }

  .banner-tools {
    top: 14px;
    right: 14px;
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 34px;
  }

  .gov-brand {
    width: min(360px, 100%);
    height: auto;
  }

  .site-search {
    margin: 118px auto 0;
  }

  .site-nav a {
    min-height: 58px;
    gap: 0;
    font-size: 17px;
  }

  .nav-icon {
    display: none;
  }

  .section {
    padding: 42px 0 50px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.9;
  }

  .overview-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-menu-four {
    max-width: none;
  }

  .overview-menu strong {
    font-size: 17px;
  }

  .service-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-category {
    min-height: 98px;
    padding: 20px;
  }

  .service-category span {
    font-size: 18px;
  }

  .business-card {
    min-height: 230px;
  }

  .business-card strong {
    min-height: auto;
    font-size: 20px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .qr-block {
    justify-items: start;
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid #eeeeee;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-brand,
  .footer-badges {
    min-height: auto;
    border: 0;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-brand img {
    margin: 0;
  }

  .footer-info {
    min-height: auto;
    font-size: 15px;
  }

  .footer-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-left: 0;
  }

  .badge-red {
    grid-row: auto;
    width: auto;
    height: auto;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-menu,
  .industry-grid,
  .service-category-grid,
  .business-card-grid {
    grid-template-columns: 1fr;
  }

  .overview-menu a {
    justify-content: flex-start;
  }

  .contact-card {
    padding: 26px 22px;
  }

  .hotline-list a {
    width: 100%;
    justify-content: center;
    font-size: 24px;
  }

}
