body {
  margin: 0;
  background: #f4f7fb;
  font-family: 'Inter', Arial, sans-serif;
  color: #162345;
}

.nav-header {
  background: #fff;
  box-shadow: 0 2px 24px 0 #2563eb13;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.2rem;
}
.nav-logo {
  height: 46px;
  max-width: 160px;
  user-select: none;
}
.menu-toggle {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
}
.dropbtn {
  color: #1e40af;
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.dropdown-content {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 999;
}
.dropdown-content li a {
  display: block;
  padding: 0.6rem 1rem;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 500;
}
.dropdown-content li a:hover {
  background-color: #e0e7ff;
}
.dropdown:hover .dropdown-content {
  display: block;
}
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
  }
  .dropdown-content li a {
    padding-left: 1rem;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: #1e40af;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.16s;
  letter-spacing: -0.5px;
}
nav a:hover {
  color: #2563eb;
}
.client-btn {
  background: #2563eb;
  color: #fff !important;
  padding: 0.38em 1.1em;
  border-radius: 22px;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 #2563eb13;
  transition: background 0.14s, color 0.13s;
  display: inline-flex;
  align-items: center;
}
.client-btn:hover {
  background: #1e40af;
  color: #e0e7ef !important;
}
.teamviewer-btn {
  background: #e53935;
  color: #fff !important;
  padding: 0.38em 1.1em;
  border-radius: 22px;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 #e5393522;
  transition: background 0.14s, color 0.13s;
  display: inline-flex;
  align-items: center;
}
.teamviewer-btn:hover {
  background: #b71c1c;
}

.hero {
  background: linear-gradient(110deg, #2563eb 62%, #4f8cff 100%);
  color: #fff;
  padding: 64px 0 54px 0;
  box-shadow: 0 4px 28px 0 #2563eb17;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  padding-top: 0px;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 0.1em;
}
.hero h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.8em;
}
.hero .accent {
  color: #dbeafe;
  font-weight: 700;
}
.hero p {
  font-size: 1.09rem;
  color: #e0eaff;
  margin-bottom: 1.2em;
  margin-top: 0.5em;
}
.cta-btn {
  display: inline-block;
  background: #fff;
  color: #2563eb;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8em 2em;
  text-decoration: none;
  font-size: 1.12rem;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  box-shadow: 0 2px 16px 0 #2563eb29;
}
.cta-btn:hover {
  background: #2563eb;
  color: #fff;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
}
.services-new {
  margin-top: 40px;
  padding: 2.2rem 1rem 1.2rem 1rem;
}
.services-new h2 {
  text-align: center;
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 2.1rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-top: 2.7rem;
}
.cards-row {
  display: flex;
  gap: 2.3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: rgba(255,255,255,0.85);
  border-radius: 1.4rem;
  box-shadow: 0 6px 32px 0 #2563eb14;
  padding: 2.2rem 1.4rem 1.3rem 1.4rem;
  min-width: 235px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  transition: transform 0.15s, box-shadow 0.16s;
  border: 1.5px solid #e0e7ff;
}
.service-card:hover {
  transform: translateY(-7px) scale(1.045);
  box-shadow: 0 16px 42px 0 #2563eb1d;
  border-color: #2563eb25;
}
.service-icon {
  background: #eff6ff;
  border-radius: 50%;
  padding: 1.05rem;
  margin-bottom: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 {
  margin: 0.5em 0 0.6em 0;
  color: #1e40af;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.service-card p {
  color: #475569;
  text-align: center;
  font-size: 1.03rem;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined', sans-serif;
  font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 40;
  font-size: 2.2em;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 2px;
}

.uptime-card, .contact-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 18px 0 #2563eb12;
  padding: 2.1rem 1.2rem 1.7rem 1.2rem;
  text-align: center;
  max-width: 540px;
  margin: 2.3rem auto 0 auto;
}
.uptime-card h2, .contact-card h2 {
  color: #2563eb;
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 0.9em;
}
.uptime-btn, .contact-btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7em 2em;
  text-decoration: none;
  font-size: 1.06rem;
  margin-top: 1.2em;
  transition: background 0.13s, box-shadow 0.15s;
  box-shadow: 0 2px 12px 0 #2563eb13;
}
.uptime-btn:hover, .contact-btn:hover {
  background: #1e40af;
}

footer {
  background: #f1f5fc;
  color: #4b5873;
  text-align: center;
  padding: 1.3rem 0 1.1rem 0;
  font-size: 0.98rem;
  margin-top: 2.5rem;
}

@media (max-width: 950px) {
  .nav-container, main {
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    padding: 1rem;
    position: absolute;
    top: 64px;
    right: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 18px #00000010;
    z-index: 20;
  }
  .nav-links.active {
    display: flex;
  }
}
@media (max-width: 700px) {
  .nav-logo {
    height: 38px;
    max-width: 100px;
  }
  .hero {
    padding: 38px 0 32px 0;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .services-new {
    padding: 1.1rem 0.1rem 0.7rem 0.1rem;
    margin-top: -30px;
  }
  .cards-row {
    flex-direction: column;
    gap: 1.1rem;
  }
  .service-card {
    min-width: 0;
    padding: 1.2rem 0.8rem 1rem 0.8rem;
  }
  .uptime-card, .contact-card {
    padding: 1.2rem 0.4rem 1.2rem 0.4rem;
  }
}