/* styles.css */

/* Reset default styles */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

a:link { text-decoration: none;     color: inherit;}
a:visited { text-decoration: none;  }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }

body {
  font-family: source-serif-pro, Georgia, Cambria, "Times New Roman", Times, serif;
  line-height: 1.6;
  background-color: #fff; /* Set the background color to light white */
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #EFEFEF; /* Set the background color to grassy green */
  color: #1F1F1F;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  width: 36px;
  height: 36px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  color: #1F1F1F;
  font-size: 20px;
  font-weight: bold;
  margin-right: 10px;
  margin-left: 10px;
}

.nav-links {
  list-style-type: none;
  display: flex;
  margin-right: 24px;
}

.nav-links li {
  margin-right: 10px;
}

.nav-links li a {
  color: #111;
  text-decoration: none;
}


main {
  padding-top: 50px;  /* adjust based on the height of your header */
  background-color: #FFFFFF; /* Set the background color to grassy green */
}

.hero {
  background-image: url('https://i.apokay.com/hero-image.png');
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 10px;
}

.section {
  padding: 20px 0;
  background-color: #fff; /* Set the background color of the middle section to light white */
}

.section-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.section li {
  font-size: 18px;
  margin: 20px;
}

.course {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.course img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 20px;
}

.course-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.course-description {
  margin-bottom: 10px;
}

.resource-list li {
  margin-bottom: 10px;
}

.contact-info li {
  margin-bottom: 5px;
}

footer {
  background-color: #efefef; /* Set the background color of the footer to grassy green */
  color: #1f1f1f;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

footer p {
  margin: 0;
}
