body {
  margin: 0;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: #f5f8fa;
  color: #222;
}

.company-logo {
  width: 180px;
  height: 60px;
  background-image: url('img/company-logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 24px auto 0 auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 72px;
  background: linear-gradient(90deg, #1a237e 60%, #3949ab 100%);
  box-shadow: 0 2px 12px rgba(30,40,90,0.08);
}

.navbar__brand {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar__menu {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__menu a {
  color: #e3e9f7;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
}

.navbar__menu a.active {
  background: #2979ff;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(41,121,255,0.18);
}

.navbar__menu a:hover {
  background: #536dfe;
  color: #fff;
}

.services-hero {
  padding: 64px 48px 32px 48px;
  background: linear-gradient(120deg, #232a3d 60%, #3a4a6d 100%);
  border-radius: 32px;
  margin: 32px auto 0 auto;
  max-width: 1200px;
  box-shadow: 0 2px 16px rgba(30,40,90,0.10);
  color: #fff;
  text-align: center;
}

.services-hero img {
  width: 100%;
  max-width: 1000px;
  height: 520px;
  object-fit: cover;
  display: block;
  margin: 0 auto 32px auto;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(41,121,255,0.10);
}

.services-hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.services-hero p {
  font-size: 1.18rem;
  color: #b3c0e0;
}

.services-main-entries {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 48px auto 0 auto;
  max-width: 1100px;
  padding: 0 48px;
  flex-wrap: wrap;
}

.services-main-entry {
  background: linear-gradient(90deg, #e3e9f7 60%, #f5f8fa 100%);
  border-radius: 28px;
  box-shadow: 0 6px 32px rgba(41,121,255,0.10);
  padding: 48px 40px 44px 40px;
  min-width: 340px;
  max-width: 480px;
  flex: 1 1 340px;
  display: flex;
  align-items: center;
  gap: 36px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.services-main-entry:hover {
  box-shadow: 0 12px 40px rgba(41,121,255,0.18);
  transform: translateY(-8px) scale(1.03);
}

.services-main-entry img {
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(41,121,255,0.12);
  width: 180px;
  height: 180px;
}

.services-main-entry h2 {
  font-size: 1.35rem;
  color: #1a237e;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.services-main-entry p {
  font-size: 1.08rem;
  color: #3a4a6d;
  margin: 0 0 18px 0;
}

.services-btn {
  display: inline-block;
  background: linear-gradient(90deg, #2979ff 60%, #00e5ff 100%);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(41,121,255,0.18);
  transition: background 0.2s, box-shadow 0.2s;
}

.services-btn:hover {
  background: linear-gradient(90deg, #00e5ff 60%, #2979ff 100%);
  box-shadow: 0 8px 32px rgba(41,121,255,0.28);
}

.services-group {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 48px auto 0 auto;
  max-width: 1100px;
  padding: 0 48px;
  flex-wrap: wrap;
}

.services-group-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(41,121,255,0.08);
  padding: 40px 32px 36px 32px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.services-group-card:hover {
  box-shadow: 0 8px 32px rgba(41,121,255,0.18);
  transform: translateY(-6px) scale(1.04);
}

.services-group-card img {
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(41,121,255,0.12);
  width: 150px;
  height: 150px;
  margin-bottom: 18px;
}

.services-group-card h3 {
  font-size: 1.15rem;
  color: #232a3d;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.services-group-card p {
  font-size: 1.05rem;
  color: #3a4a6d;
  margin: 0;
}

.footer {
  background: linear-gradient(90deg, #1a237e 60%, #3949ab 100%);
  color: #fff;
  padding: 0 48px;
  margin-top: 48px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 12px rgba(30,40,90,0.08);
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 0 24px 0;
  gap: 32px;
}

.footer__brand {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-label {
  font-weight: 600;
  color: #fff;
  margin-right: 6px;
  font-size: 1rem;
  vertical-align: middle;
}

.footer__info img {
  vertical-align: middle;
  margin-bottom: 2px;
}

.footer__info {
  line-height: 2.2;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  color: #e3e9f7;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 18px;
  padding: 6px 16px;
  transition: background 0.2s, color 0.2s;
}

.footer__nav a:hover {
  background: #536dfe;
  color: #fff;
}

.footer__copyright {
  text-align: center;
  font-size: 0.95rem;
  color: #b3c0e0;
  padding-bottom: 18px;
}

.footer-icon {
    padding-top: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-right: 8px;
}

@media (max-width: 1100px) {
  .services-hero, .services-main-entries, .services-group, .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .services-main-entries, .services-group {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 18px;
    gap: 12px;
  }
  .navbar__menu {
    gap: 18px;
  }
  .services-hero, .services-main-entries, .services-group, .footer {
    padding-left: 8px;
    padding-right: 8px;
  }
  .services-main-entry, .services-group-card {
    min-width: 0;
    max-width: 100%;
    padding: 28px 10px 24px 10px;
  }
  .services-hero img {
    height: 320px;
  }
  .services-main-entry img {
    width: 120px;
    height: 120px;
  }
  .services-group-card img {
    width: 90px;
    height: 90px;
  }
}

.services-cases {
  margin: 64px auto 0 auto;
  max-width: 1100px;
  padding: 0 48px;
}
.services-cases-title {
  text-align: center;
  font-size: 2rem;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 36px;
}
.services-cases-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.services-case-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(41,121,255,0.08);
  padding: 32px 24px 24px 24px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.services-case-card:hover {
  box-shadow: 0 8px 32px rgba(41,121,255,0.18);
  transform: translateY(-6px) scale(1.04);
}
.services-case-img {
  width: 220px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(41,121,255,0.12);
  margin-bottom: 18px;
}
.services-case-card h3 {
  font-size: 1.15rem;
  color: #232a3d;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.services-case-card p {
  font-size: 1.05rem;
  color: #3a4a6d;
  margin: 0;
  text-align: center;
}
@media (max-width: 1100px) {
  .services-cases {
    padding-left: 18px;
    padding-right: 18px;
  }
  .services-cases-list {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .services-cases {
    padding-left: 8px;
    padding-right: 8px;
  }
  .services-case-img {
    width: 100%;
    height: 90px;
  }
  .services-case-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 8px 12px 8px;
    border-radius: 16px;
  }
} 