/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

/* Header */
.header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.23);
  padding: 15px 20px;
}

.header img {
  height: 45px;
  width: auto;
}

/* Main container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 2.25fr 1fr;
  gap: 20px;
}

/* Text styles */
h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

h4 {
  margin: 20px 0 10px;
  font-size: 16px;
}

p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 22px;
}

ul {
  margin: 10px 0 20px 30px;
  line-height: 24px;
  font-size: 15px;
}

.small-text {
  font-size: 11px;
  color: rgba(51, 51, 51, 0.4);
}

/* Button */
.button {
  display: inline-block;
  background-color: #3898ec;
  color: white;
  padding: 9px 15px;
  text-decoration: none;
  margin: 20px 0;
  border: none;
  cursor: pointer;
  font-weight: bold;
  width: auto;
}

/* Form styles */
.form-container {
  background-color: #fff;
}

.form-title {
  text-align: center;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input, select {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  height: 38px;
}

.date-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.submit-button {
  width: 100%;
  margin-top: 10px;
  background-color: #3898ec;
  color: white;
  border: none;
  padding: 9px 15px;
  cursor: pointer;
  font-weight: bold;
}

.wrapper {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Listings specific styles */
.listings-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.intro-text {
  margin-bottom: 30px;
}

.program-card {
  display: grid;
  grid-template-columns: 180px 1fr 150px;
  gap: 20px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.program-logo {
  text-align: center;
}

.program-logo img {
  max-width: 120px;
  max-height: 80px;
  margin-bottom: 10px;
}

.program-name {
  font-weight: bold;
  font-size: 16px;
}

.program-description p {
  margin-bottom: 10px;
}

.program-points {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 0;
}

.program-cta {
  text-align: center;
}

.program-button {
  display: inline-block;
  background-color: #3898ec;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  width: 120px;
}

/* Thank you message */
.thank-you-container {
  text-align: center;
  padding: 40px 20px;
}

.thank-you-container h3 {
  color: #3898ec;
  margin-bottom: 20px;
}

.thank-you-container p {
  margin-bottom: 20px;
}

.job-links {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.job-links li {
  margin-bottom: 10px;
}

.job-links a {
  color: #3898ec;
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .program-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .program-logo {
    margin-bottom: 15px;
  }
  
  .program-logo img {
    margin: 0 auto 10px;
  }
  
  .program-points {
    text-align: left;
  }
  
  .program-cta {
    margin-top: 15px;
  }
}