/* Import base styles */
@import url('index.css');

.container.res {
  padding: 0px 20px;
  max-width: 800px;
  margin: 2rem auto;
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 100px;
}

.container.res h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.container.res p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.container.res a {
  color: var(--primary-color);
  text-decoration: none;
}

.container.res a:hover {
  text-decoration: underline;
}

/* Ensure footer is placed at the bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}
