body {
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

header {
  background: linear-gradient(135deg, #ff004c, #ff7b00);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-bottom: 4px solid #fff;
}

header h1 {
  font-size: 2.8em;
  margin: 0;
}

header p {
  font-size: 1.2em;
  margin-top: 10px;
}

main.content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.intro {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.intro h2 {
  color: #ff004c;
}

.articles h2 {
  font-size: 1.8em;
  color: #ff7b00;
  margin-bottom: 25px;
}

article {
  background: #fff;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

article h3 {
  color: #ff004c;
  margin-bottom: 10px;
}

article p a {
  color: #ff7b00;
  text-decoration: none;
  font-weight: bold;
}

article p a:hover {
  text-decoration: underline;
}

footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

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

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