body {
  margin: 0;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: #f5f8fa;
  color: #222;
}

.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:hover {
  background: #536dfe;
  color: #fff;
}

.navbar__menu a.active {
  background: #2979ff;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(41,121,255,0.18);
}

.banner {
  width: 100%;
  min-height: 420px;
  background: url('img/index-1.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  box-sizing: border-box;
}

.banner__content {
  max-width: 600px;
  color: #fff;
  text-align: left;
  padding: 48px 32px;
  background: rgba(30,40,90,0.55);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(30,40,90,0.18);
}

.banner__content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.banner__content p {
  font-size: 1.25rem;
  margin-bottom: 28px;
  color: #b3c0e0;
}

.banner__btn {
  display: inline-block;
  background: linear-gradient(90deg, #2979ff 60%, #00e5ff 100%);
  color: #fff;
  font-size: 1.1rem;
  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;
}

.banner__btn:hover {
  background: linear-gradient(90deg, #00e5ff 60%, #2979ff 100%);
  box-shadow: 0 8px 32px rgba(41,121,255,0.28);
}

.intro {
  padding: 64px 48px 32px 48px;
  background: #fff;
  border-radius: 32px;
  margin: 32px auto 0 auto;
  max-width: 1200px;
  box-shadow: 0 2px 16px rgba(30,40,90,0.06);
}

.intro__content {
  /* max-width: 800px; */
  margin: 0 auto;
  text-align: center;
}

.intro__content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 18px;
}

.intro__content p {
  font-size: 1.15rem;
  color: #3a4a6d;
}

.services {
  padding: 64px 48px 32px 48px;
  background: linear-gradient(90deg, #e3e9f7 60%, #f5f8fa 100%);
  border-radius: 32px;
  margin: 32px auto 0 auto;
  max-width: 1200px;
  box-shadow: 0 2px 16px rgba(30,40,90,0.04);
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 36px;
}

.services__list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(41,121,255,0.08);
  padding: 36px 28px;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(41,121,255,0.18);
  transform: translateY(-6px) scale(1.04);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2979ff 60%, #00e5ff 100%);
  box-shadow: 0 2px 8px rgba(41,121,255,0.18);
}

.service-icon--1 { background-image: url('icon1.svg'); background-size: 60% 60%; background-repeat: no-repeat; background-position: center; }
.service-icon--2 { background-image: url('icon2.svg'); background-size: 60% 60%; background-repeat: no-repeat; background-position: center; }
.service-icon--3 { background-image: url('icon3.svg'); background-size: 60% 60%; background-repeat: no-repeat; background-position: center; }
.service-icon--4 { background-image: url('icon4.svg'); background-size: 60% 60%; background-repeat: no-repeat; background-position: center; }

.services__list h3 {
  font-size: 1.15rem;
  color: #232a3d;
  font-weight: 600;
  margin: 0;
}

.projects {
  padding: 64px 48px 32px 48px;
  background: #fff;
  border-radius: 32px;
  margin: 32px auto 0 auto;
  max-width: 1200px;
  box-shadow: 0 2px 16px rgba(30,40,90,0.06);
}

.projects h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 36px;
}

.projects__list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.project-card {
  background: linear-gradient(120deg, #e3e9f7 60%, #f5f8fa 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(41,121,255,0.08);
  padding: 28px 20px;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.project-card:hover {
  box-shadow: 0 8px 32px rgba(41,121,255,0.18);
  transform: translateY(-6px) scale(1.04);
}

.project-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #b3c0e0;
  margin-bottom: 18px;
}

.project-img--1 { background-image: url('project1.svg'); background-size: cover; background-position: center; }
.project-img--2 { background-image: url('project2.svg'); background-size: cover; background-position: center; }
.project-img--3 { background-image: url('project3.svg'); background-size: cover; background-position: center; }

.project-info h3 {
  font-size: 1.1rem;
  color: #232a3d;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.project-info p {
  font-size: 1rem;
  color: #3a4a6d;
  margin: 0;
}

.news {
  padding: 64px 48px 32px 48px;
  background: linear-gradient(90deg, #e3e9f7 60%, #f5f8fa 100%);
  border-radius: 32px;
  margin: 32px auto 0 auto;
  max-width: 1200px;
  box-shadow: 0 2px 16px rgba(30,40,90,0.04);
}

.news h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 36px;
}

.news__list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.news-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(41,121,255,0.08);
  padding: 28px 20px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.news-card:hover {
  box-shadow: 0 8px 32px rgba(41,121,255,0.18);
  transform: translateY(-6px) scale(1.04);
}

.news-card h3 {
  font-size: 1.1rem;
  color: #232a3d;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.news-card p {
  font-size: 1rem;
  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__info {
  font-size: 1rem;
  color: #b3c0e0;
  margin-bottom: 18px;
  line-height: 1.7;
}

.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: 900px) {
  .navbar, .banner, .intro, .services, .projects, .news, .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 18px;
    gap: 12px;
  }
  .navbar__menu {
    gap: 18px;
  }
  .banner__content {
    padding: 24px 10px;
  }
  .intro, .services, .projects, .news, .footer {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.privacy-modal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 9999;
  background: rgba(30,40,90,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy-modal__content {
  background: #232a3d;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(30,40,90,0.18);
  padding: 32px 28px;
  max-width: 480px;
  width: 90%;
  text-align: left;
}
.privacy-modal__content h3 {
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.privacy-modal__content p {
  font-size: 1rem;
  color: #e3e9f7;
  margin-bottom: 24px;
}
.privacy-modal__content a {
  color: #00e5ff;
  text-decoration: underline;
}
.privacy-modal__actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.privacy-btn {
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.privacy-btn--accept {
  background: linear-gradient(90deg, #2979ff 60%, #00e5ff 100%);
  color: #fff;
}
.privacy-btn--accept:hover {
  background: linear-gradient(90deg, #00e5ff 60%, #2979ff 100%);
}
.privacy-btn--decline {
  background: #3949ab;
  color: #fff;
}
.privacy-btn--decline:hover {
  background: #232a3d;
  color: #00e5ff;
}
@media (max-width: 600px) {
  .privacy-modal__content {
    padding: 18px 8px;
    font-size: 0.95rem;
  }
  .privacy-modal__actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
} 