body {
     font-family: Arial, sans-serif;
     margin: 0;
     padding: 0;
     background-color: #f4f7fa;
}

 main {
     padding: 40px;
}

 h1, h2 {
     font-family: "Tiempos Headline", seris;
}

 h1 {
     font-size: 36px;
     margin-bottom: 20px;
}

 h2 {
     font-size: 28px;
     margin-top: 40px;
     margin-bottom: 10px;
}

 p {
     font-size: 18px;
     color: #6c757d;
}

 .job-listing-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin-top: 40px;
}
 .job-listing {
     background-color: #fff;
     border: 1px solid #ccc;
     border-radius: 5px;
     padding: 20px;
     margin-bottom: 20px;
     width: 80%;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

 .job-listing h3 {
     font-size: 24px;
     color: #007bff;
     margin-bottom: 10px;
}

 .job-listing p {
     font-size: 16px;
     color: #6c757d;
     margin-bottom: 10px;
}
 .job-listing a {
     font-size: 18px;
     font-weight: bold;
     color: #007bff;
     text-decoration: none;
}

 .job-listing a:hover {
     text-decoration: underline;
}

 .contact-form {
     margin-top: 40px;
}
 .contact-form label {
     display: block;
     font-size: 16px;
     margin-bottom: 10px;
}

 .contact-form input {
     padding: 10px 15px;
     width: 300px;
     border: 1px solid #ccc;
     border-radius: 4px;
     font-size: 16px;
}

 .contact-form button {
     background-color: #007bff;
     border: none;
     border-radius: 4px;
     padding: 10px 20px;
     color: #fff;
     font-size: 16px;
     cursor: pointer;
}

 .contact-form button:hover {
     background-color: #0056b3;
}