body {
  background-color: #f4f4f4;
  color: #333;
  font-family: "Segoe UI", Roboto, sans-serif;
  margin: 0;
}

.container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.illustration {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 50px;
  opacity: 0;
  transform: scale(1.05);
  animation: fadeInZoom 1.5s ease forwards;
}

@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

footer {
  margin-top: 20px;
  font-size: 0.9em;
  color: #777;
}

.content-grid {
  width: 100%;
  max-width: 1100px;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
}

.content-main {
  flex: 2;
  display: flex;
  justify-content: center;
}

.news-panel {
  flex: 1;
  background: #fff7e1;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  text-align: left;
}

.news-panel h2 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #0e3a74;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-list li {
  border-left: 3px solid #0e3a74;
  padding-left: 1rem;
}

.news-date {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #759a1e;
  margin-bottom: 0.35rem;
}

@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
  }

  .content-main {
    flex: none;
  }
}
