body {
  background-color: #f8f9fa;
  margin: 0;
  padding: 15px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  color: #2d3436;
}

.center-container {
  width: 100%;
  max-width: 600px;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
}

h1 {
  font-family: "Lora", serif;
  font-size: 2.2rem;
  text-align: center;
  margin: 0 0 12px 0;
  color: #2d3436;
  font-weight: 700;
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #ddd 20%, #ddd 80%, transparent 100%);
  margin: 18px 0 22px 0;
}

h2 {
  font-family: "Lora", serif;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2d3436;
  font-size: 1.3rem;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0f0f0;
}

p {
  line-height: 1.5;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

ul {
  padding-left: 20px;
  margin: 12px 0;
}

li {
  margin-bottom: 8px;
  line-height: 1.4;
  font-size: 0.95rem;
}

a {
  color: #0984e3;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

strong {
  color: #2d3436;
  font-weight: 600;
}
.work-competition {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between sections */
}

@media (min-width: 768px) {
  .work-competition {
    flex-direction: row; /* Side by side on tablets and up */
  }
}