/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styles */
  body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
  }
  
  /* Header styles */
  header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #333;
  }
  
  #icon {
    width: 2rem;
    height: 2rem;
    background-color: #007bff;
    border-radius: 50%;
    margin-right: 1rem;
  }
  
  /* Main content styles */
  .container-fluid {
    padding: 1rem;
  }
  
  h4 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.6;
  }
  
  /* Accordion styles */
  .accordion-item {
    margin-bottom: 1rem;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .accordion-header {
    background-color: #fff;
  }
  
  .accordion-header button {
    color: #333;
    font-weight: 700;
  }
  
  .accordion-header button:focus {
    outline: none;
    box-shadow: none;
  }
  
  .collapse {
    background-color: #f8f9fa;
    padding: 1rem;
  }
  