* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.topbar-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.brand .logo-text {
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 26px;
}

.brand .brand-sub {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.top-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.info-label {
  font-size: 12px;
  color: #777;
}

.info-value {
  font-weight: 700;
  font-size: 13px;
  color: #222;
  max-width: 420px;
}

/* Nav */
.nav {
  background: #fff;
  border-bottom: 2px solid #f3f3f3;
}

.nav-inner {
  display: flex;
  gap: 26px;
  align-items: center;
  padding: 12px 0;
}

.nav-link {
  text-decoration: none;
  font-weight: 700;
  color: #111;
  padding: 10px 0;
  border-bottom: 3px solid transparent;
}

.nav-link.active {
  color: #e60012;
  border-bottom-color: #e60012;
}

/* Hero */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background:
    url("../images/hero.jpg") center/cover no-repeat,
    linear-gradient(120deg, #9ad0ff, #e5f4ff);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

.hero-inner {
  position: relative;
  padding: 80px 0;
  color: #fff;
}

.hero h1 {
  margin: 0 0 10px 0;
  font-size: 36px;
}

.hero p {
  margin: 0 0 18px 0;
  font-size: 16px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  background: #e60012;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.75);
}

/* Sections */
.section {
  padding: 70px 0;
  background: #fff;
}

.section-title {
  font-size: 32px;
  margin: 0 0 28px 0;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.section-title.white { color: #fff; }

.card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px;
  background: #fff;
}

.card-title {
  font-weight: 800;
  margin-bottom: 8px;
}

.card-text {
  color: #555;
  line-height: 1.6;
}

/* Red section like screenshot */
.section-red {
  background: #e60012;
  color: #fff;
}

.news-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 18px;
}

.date-badge {
  width: 72px;
  background: rgba(0,0,0,0.35);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.date-day {
  font-size: 26px;
  font-weight: 900;
  padding: 12px 0 6px;
}

.date-ym {
  font-size: 12px;
  padding: 6px 0 10px;
  opacity: 0.9;
}

.news-title {
  font-weight: 900;
  letter-spacing: 0.5px;
}

.news-text {
  margin-top: 8px;
  opacity: 0.95;
}

/* Partners */
.partner-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner {
  border: 1px dashed #ddd;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  color: #666;
  font-weight: 700;
}

/* Footer */
.footer {
  background: #1f1f1f;
  color: #cfcfcf;
  padding: 40px 0 18px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer h3 {
  color: #fff;
  margin: 0 0 12px 0;
  font-size: 16px;
}

.footer-text { margin: 8px 0; color: #bdbdbd; }

.footer-link {
  display: block;
  color: #bdbdbd;
  text-decoration: none;
  margin: 8px 0;
}

.footer-link:hover { color: #fff; }

.footer-bottom {
  padding-top: 14px;
  color: #9a9a9a;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; }
  .top-info { flex-direction: column; align-items: flex-start; }
  .info-item { text-align: left; }
  .nav-inner { flex-wrap: wrap; gap: 14px; }
  .card-list { grid-template-columns: 1fr; }
  .partner-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; }
}
