/* General Body Styling */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: white;
  color: #002fff; /* Deep Blue */
  margin: 0;
  padding: 0;
}

/* Header */
.page-header {
  background-color: #0800ff; /* Bright Blue */
  color: white;
  padding: 60px 20px;
  text-align: center;
}
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;
}
.subtitle {
  color: #FFD700; /* Gold */
  font-size: 1.3em;
  margin-top: 10px;
}

/* Hero Section */
.hero-section {
  background-color: #f2f9ff; /* Light Blue */
  text-align: center;
  padding: 50px 20px;
}

.hero-section h2 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  color: #003366;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  font-size: larger;
  padding: 20px;
}

/* Info Section */
.info-section, .slideshow-section, .registration-section {
  margin: 40px 0;
}

/* Section Headings */
h2 {
  color: #003366; /* Dark Blue */
  border-left: 6px solid #FFD700; /* Gold */
  padding-left: 10px;
  font-size: 1.8rem;
}

/* List of Benefits */
.benefits-list {
  list-style: square;
  padding-left: 20px;
  color: #003366; /* Dark Blue */
}

/* Slideshow Styles */
.slideshow-container {
  position: relative;
  max-width: 700px;
  height: 400px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Fade Animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Registration Form */
.registration-form {
  background-color: #f2f9ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.registration-form .form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  color: #003366;
  font-size: 1rem;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Dark Blue */
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn:hover {
  background-color: #ffc300;
}

/* Footer */
.site-footer {
  background-color: #0000ff; /* Blue */
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Back Button */
.home-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

.home-button:hover {
  background-color: #005fa3;
}

/* Button Wrapper */
.button-wrapper {
  text-align: right;
  margin-top: 20px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 40px 20px;
  }

  .hero-section {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.1em;
  }

  .slideshow-container {
    max-width: 100%;
    height: auto;
  }

  .registration-form {
    padding: 20px;
  }

  .registration-form .btn {
    padding: 10px 20px;
  }

  .home-button {
    padding: 10px 20px;
  }
}
