* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

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

header {
    background-color: navy;
    color: gold;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: gold;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd700; 
}

.gallery {
    padding: 50px 0;
    text-align: center;
}

.gallery h2 {
    margin-bottom: 30px;
    font-size: 36px;
    color: navy;
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    height: auto;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.dot-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #555;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

section:not(.footer) {
    margin-bottom: 30px;
}

  .courses {
      padding: 50px 0;
  }

  .course-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
      overflow: hidden;
  }

  .course-card h2 {
      background-color: navy;
      color: gold;
      padding: 15px;
      margin: 0;
      font-size: 24px;
      text-align: center;
  }

  .course-list {
      padding: 20px;
  }

  .course {
      padding: 20px 0;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s;
  }

  .course:hover {
      background-color: #f9f9f9;
  }

  .course h3 {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .course p {
      font-size: 16px;
      color: #666;
  }

.course-table {
    width: 100%;
    border-collapse: collapse;
}

.course-header th {
    border-bottom: 2px solid #000;
}

.course-row td {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.staff {
    padding: 50px 0;
}

.staff h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: navy;
}

.department {
    margin-bottom: 40px;
}

.department h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.staff-member {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.staff-member h4 {
    color: navy;
    margin-bottom: 10px;
    font-size: 20px;
}

.staff-member p.email {
    color: #666;
    font-size: 16px;
}


.staff-search {
    background-color: #f9f9f9;
    padding: 20px 0;
}

.staff-search .container {
    text-align: center;
}

.staff-search input[type="text"] {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.staff-search input[type="text"]:focus {
    outline: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 90px; 
    height: 90px; 
    border-radius: 50%; 
    overflow: hidden; 
    margin-top: 10px; 
}

footer {
    background-color: navy;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}
