/* Global Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #333333;
}

a {
  text-decoration: none;
  color: #0077B6;
}

/* Header Styles */
header {
  background-color: #0077B6;
  padding: 30px 60px;
  text-align: center;
  color: #fff;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0 30px;
}

nav a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.hero {
  margin-top: 60px;
  background-color: #0077B6;
  color: #fff;
  padding: 80px 60px;
  background-image: url('https://source.unsplash.com/random/1920x1080/?nature');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 30px;
  font-weight: 800;
}

.hero p {
  font-size: 28px;
  margin-bottom: 50px;
}

.cta-button {
  display: inline-block;
  background-color: #2ECC71;
  color: #fff;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(46, 204, 113, 0.4);
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-4px);
}

/* Main Content Styles */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 60px;
}

section {
  margin-bottom: 80px;
}

h2 {
  font-size: 44px;
  margin-bottom: 30px;
  color: #0077B6;
  font-weight: 700;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
}

.program-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  background-image: url('https://source.unsplash.com/random/600x400/?nature');
}

.program-item h3 {
  font-size: 28px;
  margin-top: 30px;
  color: #333333;
  font-weight: 600;
}

.program-item p {
  font-size: 18px;
  color: #555555;
}

/* Footer Styles */
footer {
  background-color: #333333;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

footer p {
  margin: 0;
  font-size: 16px;
}

/* SFTP Connection Details */
.sftp-info {
  font-size: 16px;
  margin-top: 30px;
  color: #555555;
}