/* body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  color: #333;
} */

.container {
  max-width: 1200px;
  margin: 100px 100px;
  text-align: center;
  /* margin: 0 auto; */
  /* padding: 20px; */
}

.section {
  background: white;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 20px;
}

.section h2 {
  color: #f77770;
  margin-top: 0;
}

.section p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.section img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.apply-button {
  margin-top: 20px;
}

.apply-button a {
  display: inline-block;
  background-color: #bb726e;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.apply-button a:hover {
  background-color: #f77770;
}

@media (max-width: 499px) {
  .container {
      max-width: 1200px;
      margin: 80px 10px;
      /* margin: 0 auto; */
      /* padding: 20px; */
  }
}

