body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff; /* White background */
  color: #333; /* Default text color */
}

.page-header {
  background-color: #0011ff; /* Deep blue background */
  color: #FFD700; /* Yellow text for contrast */
  padding: 80px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
button{
  padding: 10px;
  background-color: gray;
  color: black;
  border: outset black 2px;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: larger;
}
button:hover{
  background-color: blue;
}
.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.page-header .sub {
  font-size: 1.2rem;
  font-weight: lighter;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.info-section, .slideshow-section, .registration-section {
  margin: 40px 0;
  padding: 30px;
  background-color: #f4f4f4; /* Light grey background for sections */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 2rem;
  color: #003366; /* Deep blue */
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #FFD700; /* Yellow underline */
  padding-bottom: 10px;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 10px;
  background: #fff; /* White background for list items */
  margin: 10px 0;
  border-left: 6px solid #003366; /* Blue border to the left */
  color: #003366;
}

.benefits-list li:hover {
  background: #FFD700; /* Yellow background on hover */
  color: #003366;
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.registration-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #003366; /* Blue border */
  border-radius: 6px;
  margin-top: 5px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

.btn {
  background-color: #FFD700; /* Yellow button */
  color: #003366; /* Blue text */
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ffc300; /* Slightly darker yellow on hover */
}

.site-footer {
  background-color: #2200ff; /* Deep blue footer */
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.home-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #003366; /* Deep blue button */
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.home-button:hover {
  background-color: #FFD700; /* Yellow on hover */
}
.slideshow-container {
  position: relative;
  max-width: 800px; /* Set the maximum width */
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slide {
  display: none;
}

.slide img {
  width: 100%; /* Ensures the image fills the container */
  height: 400px; /* Fixed height for all images */
  object-fit: cover; /* Ensures the image covers the area without distortion */
  border-radius: 10px;
}
.hero-section {
  background-color: #f0f8ff;
  text-align: center;
  padding: 50px 20px;
}

.hero-section h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero-section p {
  font-size: 1.2rem;
  color: #003366;
}

/* Alternate Info Section */
.alt-section {
  background-color: #eaf4ff;
}

/* Testimonials */
.testimonials-section {
  background-color: #fffde7;
  padding: 40px 20px;
  text-align: center;
}

.testimonial {
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  color: #444;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #002d72;
}
