/* Base Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: white;
    color: #002fff;
    margin: 0;
    padding: 0;
  }
  
  .page-header {
    background-color: #0800ff;
    color: white;
    padding: 40px 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;
    font-size: 1.2em;
  }
  
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .info-section,
  .slideshow-section,
  .registration-section {
    margin: 40px 0;
  }
  
  h2 {
    color: #003366;
    border-left: 6px solid #FFD700;
    padding-left: 10px;
    margin-bottom: 15px;
  }
  
  /* Benefits List */
  .benefits-list {
    list-style: square;
    padding-left: 20px;
    color: #003366;
  }
  
  /* Slideshow Styles */
  .slideshow-container {
    position: relative;
    max-width: 700px;
    height: 400px;
    margin: 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: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    font-weight: bold;
    color: #003366;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-top: 5px;
  }
  
  .btn {
    background-color: #FFD700;
    color: #003366;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #ffc300;
  }
  
  /* Back to Home Button */
  .home-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: medium;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
  }
  
  .home-button:hover {
    background-color: #005fa3;
  }
  
  .button-wrapper {
    text-align: right;
    margin-top: 10px;
  }
  
  /* Footer */
  .site-footer {
    background-color: #0000ff;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
  }
  
  /* Responsive Layout */
  @media (max-width: 600px) {
    .container {
      padding: 10px;
    }
  
    h1 {
      font-size: 1.8rem;
    }
  
    .slideshow-container {
      height: 250px;
    }
  
    .btn,
    .home-button {
      width: 100%;
      text-align: center;
    }
  
    .button-wrapper {
      text-align: center;
    }
  }
  