body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.apply-section {
  background-color: #fff;
  padding: 40px;
  text-align: center;
}

.apply-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.apply-section p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 30px;
}

.apply-options {
  display: flex;
  justify-content: space-around;
}

.apply-options .social-media,
.apply-options .email-contact {
  width: 45%;
  padding: 20px;
  border-radius: 8px;
  background-color: #f5f5f5;
}

.apply-options h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.apply-options p {
  font-size: 1.1em;
  color: #888;
  margin-bottom: 20px;
}

.apply-options a {
  display: block;
  margin-bottom: 10px;
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

.apply-options a:hover {
  color: #2980b9;
}

/* Media Queries pour la responsivité */
@media screen and (max-width: 768px) {
  .apply-options {
    flex-direction: column;
  }

  .social-media,
  .email-contact {
    flex: 1 1 auto;
    width: 100%;
    margin: 0;
    padding: 15px;
  }
}
