body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #11121a, #0c0301);
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  .header {
    background: linear-gradient(135deg, #0c0236, #02250d);
    color: white;
  }
  
  .header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .header p {
    font-size: 1.2rem;
  }
  
  .intro h2 {
    color: #0077b6;
    margin-bottom: 0.5rem;
  }
  
  .accordion-button {
    background-color: #00b4d8;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
  }
  
  .accordion-button.collapsed {
    background-color: #0077b6;
  }
  
  .colorful-card {
    background: linear-gradient(135deg, #2100b6, #033f15);
    color: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .card-title {
    font-weight: bold;
    font-size: 1.25rem;
  }
  
  .btn-outline-light {
    border-color: white;
    color: white;
  }
  
  .btn-outline-light:hover {
    background-color: white;
    color: #ff6a88;
  }
  
  .footer {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    margin-top: 20px;
  }
  

  .home-icon {
    position: absolute;
    top: 20px; /* Adjust the top positioning */
    left: 20px; /* Adjust the left positioning */
    background-color: #f8f9fa; /* Light background color for the box */
    color: #000; /* Text color */
    border: 2px solid #007bff; /* Border color */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none;
    padding: 10px 15px; /* Padding inside the box */
    font-weight: bold;
  }
  
  .home-icon:hover {
    background-color: #007bff; /* Change background on hover */
    color: #fff; /* Text color on hover */
    border-color: #0056b3; /* Darker border color on hover */
  }
  
  .header {
    position: relative;
  }
  
  .text-center {
    padding-top: 40px; /* Add some space to avoid overlap with the home icon */
  }
  