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.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;
}

.news-hero {
  width: 100%;
  min-height: 420px;
  background: url('img/news-1.png') center center/cover no-repeat;
 
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  box-sizing: border-box;
  position: relative;
}
.news-hero-img {
  display: block;
  width: 100%;
  height: 100%;


}
.news-hero-card {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(41,121,255,0.18);
  padding: 40px 56px 32px 56px;
  min-width: 320px;
  max-width: 600px;
  color: #1a237e;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  animation: floatIn 1.2s cubic-bezier(.23,1.02,.32,1) 0.1s both;
}
@keyframes floatIn {
  0% { opacity: 0; transform: translateX(-50%) translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.news-hero-card h1 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.news-hero-card p {
  font-size: 1.15rem;
  color: #3a4a6d;
  margin-bottom: 18px;
}
.news-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;
}
.news-btn:hover {
  background: linear-gradient(90deg, #00e5ff 60%, #2979ff 100%);
  box-shadow: 0 8px 32px rgba(41,121,255,0.28);
}

.news-main {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 120px auto 0 auto;
  padding: 0 48px;
  align-items: flex-start;
}
.news-timeline-section {
  flex: 2;
  min-width: 0;
}
.news-section-title {
  font-size: 1.5rem;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 28px;
}
.news-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.news-timeline-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(41,121,255,0.08);
  padding: 32px 28px 28px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.news-timeline-card:hover {
  box-shadow: 0 8px 32px rgba(41,121,255,0.18);
  transform: translateY(-6px) scale(1.04);
}
.news-timeline-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e3e9f7;
  box-shadow: 0 2px 8px rgba(41,121,255,0.12);
}
.news-timeline-info h3 {
  font-size: 1.15rem;
  color: #232a3d;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.news-timeline-info p {
  font-size: 1.05rem;
  color: #3a4a6d;
  margin: 0 0 10px 0;
}
.news-date-badge {
  display: inline-block;
  background: linear-gradient(90deg, #2979ff 60%, #00e5ff 100%);
  color: #fff;
  font-size: 1.01rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 5px 18px;
  margin-top: 8px;
}
.news-announcement-section {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.news-announcement-card {
  background: linear-gradient(120deg, #2979ff 60%, #00e5ff 100%);
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(41,121,255,0.14);
  color: #fff;
  padding: 48px 32px 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  min-height: 320px;
  justify-content: center;
}
.news-announcement-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
}
.news-announcement-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.news-announcement-info p {
  font-size: 1.08rem;
  color: #e3e9f7;
  margin-bottom: 12px;
}
.news-announcement-info .news-date-badge {
  background: #fff;
  color: #2979ff;
  font-weight: 700;
  margin-top: 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 {
  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) {
  .news-hero, .news-main, .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .news-main {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 18px;
    gap: 12px;
  }
  .navbar__menu {
    gap: 18px;
  }
  .news-hero, .news-main, .footer {
    padding-left: 8px;
    padding-right: 8px;
  }
  .news-hero-img {
    height: 220px;
  }
  .news-hero-card {
    min-width: 0;
    max-width: 100%;
    padding: 24px 10px 18px 10px;
    border-radius: 18px;
  }
  .news-main {
    margin-top: 80px;
    padding: 0 2vw;
  }
  .news-timeline-card, .news-announcement-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 8px 12px 8px;
    border-radius: 16px;
  }
  .news-timeline-icon, .news-announcement-icon {
    width: 48px;
    height: 48px;
  }
}

.breadcrumb {
  max-width: 1200px;
  margin: 32px auto 0 auto;
  padding: 12px 24px;
  font-size: 1rem;
  color: #3949ab;
  background: #e3e9f7;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(41,121,255,0.06);
}
.breadcrumb a {
  color: #1a237e;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover {
  text-decoration: underline;
} 