/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Section styles */
.sae {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Title styles */
.sae__title {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 10px;
  text-align: center;
}

/* Details styles */
.sae__details {
  font-size: 1rem;
  color: #666666;
  text-align: center;
  margin-bottom: 20px;
}

/* List styles */
.sae__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Button container styles */
.sae__button {
  margin-bottom: 10px;
  text-align: center;
}

/* Button styles */
.sae__button button {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sae__button button:hover {
  background-color: #0056b3;
}
