body {
    font-family: Arial, sans-serif;
    background: #b8b3c18e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
  }
  .accordion {
    width: 100%;
    max-width: 700px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
  .accordion-item {
    margin-bottom: 8px;
    border-radius: 12px;
    overflow: hidden;
  }
  .accordion-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
  }
  .accordion-header:hover {
    background: linear-gradient(135deg, #0056b3, #003f7f);
  }
  .accordion-content {
    display: none;
    padding: 18px;
    background: #f8f9fa;
    line-height: 1.6;
    font-size: 16px;
    border-radius: 0 0 12px 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.05);
  }
  .icon {
    transition: transform 0.3s ease-in-out;
    font-size: 20px;
  }
  .accordion-item.active .icon {
    transform: rotate(180deg);
  }