/* -------------------- */
/* Base Styles          */
/* -------------------- */
body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: #f9f9fb;
  color: #222;
  margin: 0;
  padding: 0;
}

/* -------------------- */
/* Layout Container     */
/* -------------------- */
.container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* -------------------- */
/* Header Section       */
/* -------------------- */
.logo {
  margin-bottom: 15px;
}

.logo img {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

header h1 {
  font-size: 2em;
  margin-bottom: 5px;
  color: #333;
  font-weight: 600;
  letter-spacing: -0.5px;
}

header .tagline {
  font-size: 1.05em;
  color: #666;
  margin-bottom: 30px;
  font-style: italic;
}

/* -------------------- */
/* Hero Image Section   */
/* -------------------- */
.hero-image {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* -------------------- */
/* Promo Section        */
/* -------------------- */
.promo {
  margin: 30px 0;
}

.promo .support-text {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 10px;
}

.promo .offer {
  font-size: 1.3em;
  font-weight: 600;
  color: #0077cc;
}

.promo .highlight {
  color: #e63946;
}

.promo .note {
  font-size: 0.9em;
  color: #777;
}

/* -------------------- */
/* Newspaper Grid       */
/* -------------------- */
.newspaper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
  align-items: start;
  padding: 20px;
}

.newspaper {
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newspaper:hover {
  transform: translateY(-4px);
}

.newspaper img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background: transparent;
}

.newspaper a {
  display: block;
  color: #0073aa;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95em;
}

.newspaper a:hover {
  text-decoration: underline;
}

/* -------------------- */
/* Footer Section       */
/* -------------------- */
footer {
  margin-top: 30px;
  font-size: 0.95em;
  color: #444;
}

footer a {
  color: #0077cc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* -------------------- */
/* Responsive Tuning    */
/* -------------------- */
@media (max-width: 600px) {
  .logo img {
    width: 180px;
  }
  .newspaper img {
    max-width: 110px;
  }
}
```
