/* Reset / base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
body {
  background: #eef2f6;  /* हल्का grayish blue */
  color: #111;
  line-height: 1.4;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.site-header {
  background: #0077ff;  /* नीला */
  color: #fff;
  padding: 18px 16px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .wrap {
  max-width: 980px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.logo img {
  width: 28px;
  height: 28px;
}
.hamburger {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamburger .lines {
  width: 18px;
  height: 2px;
  background: #fff;
  box-shadow: 0 5px 0 #fff, 0 -5px 0 #fff;
}

/* Container */
.container {
  max-width: 980px;
  margin: 22px auto;
  padding: 0 16px;
}
h2.section-title {
  text-align: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: #0077ff; /* section title भी नीला */
}

/* Grid cards */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(12,18,29,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 120px;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(12,18,29,0.12);
}
.card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}
.card .title {
  font-weight: 600;
  text-align: center;
  padding-top: 6px;
  color: #333;
}

/* Warning / footer box */
.warning {
  background: #1a2b3c; /* dark navy */
  color: #fff;
  border-radius: 6px;
  padding: 20px;
  margin: 28px 0;
  text-align: center;
}
.warning small {
  display: block;
  margin-top: 8px;
  opacity: 0.85;
  font-size: 14px;
}

/* Mobile adjustments */
@media (min-width:768px) {
  .grid { grid-template-columns: repeat(3, 1fr) }
  .card img { width: 88px; height: 88px }
}
