/* Reset some default spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styling */
  body {
    font-family: 'Courier New', Courier, monospace;  /* Retro vibe */
    background-color: #fdfdfd;  /* Light background */
    color: #333;
    line-height: 1.6;
    padding: 20px;
  }
  
  /* Header styling */
  header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
  }
  
  header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  /* Navigation styling */
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1em;
    flex-wrap: wrap;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    background-color: #4a90e2; /* blue accent */
    color: #fff;
  }
  
  /* Hero Section styling */
  #hero {
    background-color: #eaeaea;  /* Subtle contrast */
    border: 1px solid #ccc;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
    border-radius: 4px;
  }
  
  #hero p {
    margin-bottom: 15px;
    font-size: 1.1em;
  }
  
  .btn {
    /* Remove background and border for a minimal look */
    background: none;
    border: none;
    padding: 4px 8px;
    
    /* Use the blue accent as the text color */
    color: #4a90e2;
    font-weight: bold;
    text-decoration: none;
    
    /* Optional: a smooth color transition on hover */
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }
  
  .btn:hover {
    /* Instead of changing the background, underline the text on hover */
    text-decoration: underline;
    /* Optionally, darken the blue a little */
    color: #336bbd;
  }
  
  /* Main content styling */
  main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  section {
    margin-bottom: 30px;
  }
  
  section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;
  }
  
  section p {
    margin-bottom: 15px;
    font-size: 1.1em;
  }
  
  /* Contact-specific styling */
  #contact {
    background-color: #eaeaea;  /* subtle contrast */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
  }
  
  .contact-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-link:hover {
    text-decoration: underline;
  }
  
  /* Footer styling */
  footer {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    font-size: 0.9em;
  }
  
  #social-links {
    margin-top: 10px;
  }
  
  /* Responsive Styles */
  @media (max-width: 600px) {
    body {
      padding: 10px;
    }
    
    header h1 {
      font-size: 2em;
    }
    
    nav ul {
      flex-direction: column;
      gap: 10px;
    }
    
    main {
      padding: 10px;
    }
    
    #hero {
      padding: 15px;
      margin: 15px auto;
    }
    
    #hero p {
      font-size: 1em;
    }
    
    .btn {
      padding: 8px 16px;
      font-size: 0.9em;
    }
    
    section h2 {
      font-size: 1.5em;
    }
    
    section p {
      font-size: 1em;
    }
  }
  


  /* Responsive Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto; /* center horizontally */
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  /* FAQ Section Styling */
.faq {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
}

.faq li {
  margin-bottom: 20px;
  padding: 10px;
  border-left: 4px solid #4a90e2;  /* blue accent border */
  background-color: #f7f7f7;         /* subtle light background */
  border-radius: 4px;
  list-style: none;
}

.faq li strong {
  color: #4a90e2;
  display: inline-block;
  min-width: 30px;
  margin-bottom: 5px;
}

/* Optional: Adjust line breaks for better spacing */
.faq li br {
  display: block;
  margin-bottom: 5px;
}
