body {
  background: linear-gradient(135deg, #eaf6ff 0%, #f5faff 100%);
  color: #222;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
}
.news-hero-banner {
  width: 100%;
  background: linear-gradient(90deg, #0a1a3c 0%, #00e0d6 100%);
  border-radius: 32px;
  margin: 48px 0 40px 0;
  box-shadow: 0 8px 32px rgba(0,32,64,0.13);
  display: flex;
  align-items: center;
  min-height: 180px;
}
.news-hero-content {
  padding: 48px 64px;
}
.news-hero-title {
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.news-hero-desc {
  color: #e0f7fa;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}
.news-section {
  margin-bottom: 48px;
}
.news-section-title {
  font-size: 28px;
  font-weight: 800;
  color: #2196f3;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.news-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.news-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,32,64,0.10);
  padding: 28px 20px;
  min-width: 220px;
  max-width: 340px;
  flex: 1;
  border-left: 6px solid #00e0d6;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.news-card:hover {
  box-shadow: 0 12px 32px rgba(0,224,214,0.18);
  border-left: 8px solid #2196f3;
}
.news-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a1a3c;
  margin-bottom: 6px;
}
.news-card-date {
  font-size: 13px;
  color: #00e0d6;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.news-card-desc {
  font-size: 15px;
  color: #1a237e;
}
@media (max-width: 900px) {
  .news-hero-banner {
    min-height: 100px;
    border-radius: 16px;
    margin: 24px 0 20px 0;
  }
  .news-hero-content {
    padding: 24px 12px;
  }
  .news-hero-title {
    font-size: 24px;
  }
  .news-hero-desc {
    font-size: 13px;
  }
  .news-list {
    flex-direction: column;
    gap: 16px;
  }
  .news-card {
    min-width: 0;
    max-width: 100%;
    padding: 14px 8px;
    border-radius: 8px;
  }
} 