  body {
    font-family: sans-serif;
  /* background-color: #fdfdfd; */
    background-color: #fef7ff;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    margin: 0;
    padding-top: 60px;
  }
  header {
    text-align: center;
    margin-bottom: 40px;
  }
  header a {
    display: inline-block;
    text-decoration: none;
  }
  header img {
    width: 160px;
    height: auto;
    transition: transform 0.2s;
  }
  header img:hover {
    transform: scale(1.05);
  }
  .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 800px;
  }
  .item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .item:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }
  .item img, .item svg {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }
  .title {
    font-size: 17px;
    color: #555;
  }
  a {
    text-decoration: none;
  }

  

  .brand {
     width: 56px;
     height: 56px;
     border-radius: 12px;
     object-fit: cover;
     box-shadow: 0 6px 18px rgba(124,58,237,0.18);
   }

    h1{font-size:18px;margin:0}
 /*   p.lead{margin:0;color:var(--muted);font-size:13px} */
     p.lead{margin-left:30px;margin-right:30px; color:var(--muted);font-size:13px}


.foot a:link, .foot a:visited {
    color: black;
}
.foot a:hover {
    color: orange;
}   

