/* Reset and base */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  body{
    background: var(--colorBg);
  }
  h1, h2, h3 {
    margin-top: 0;
    color: var(--txt1); /* Indigo hue for professional but friendly tone */
  }
  h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin: 48px 16px 32px;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
  }
  /* Profile section */
  .team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
  }
  .profile-card {
    background: var(--color2);
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s ease;
  }
  .profile-card:hover,
  .profile-card:focus-within {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    outline: none;
  }
  .profile-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 5px solid white; /* matching shade lavender */
  }
  .profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--txt1);
  }
  .profile-role {
    font-size: 0.9rem;
    color: var(--txt1); /* Grayish */
    margin-bottom: 12px;
    background:var(--colorBg);
    padding: 4px 12px 8px;
    border-radius: 6px;
  }
  .profile-bio {
    font-size: 0.95rem;
    color: var(--txt2);
  }

  /* Mission Vision Objective Section */
  .info-section {
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    background: var(--color2);
    margin: 0 10px;
  }
  .info-block {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 300px;
  }

  .info-icon {
    color: var(--color1);
    font-size: 48px;
    align-self: start;
  }

  .info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--txt1);
  }

  .info-text {
    font-size: 1rem;
    color: var(--txt2);
    line-height: 1.5;
  }
/*Donation*/
.donation-box{
    margin:auto;
    padding:40px;
    text-align:center;
}
.donation-box h2{
    font-size:38px;
    margin-bottom:15px;
}
.donation-box p{
    color:var(--txt2);
    line-height:1.8;
    font-size:18px;
}
.highlight{
    color:#38bdf8;
    font-weight:bold;
}
.donation-box .buttons{
    margin:15px 0;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}
.btn{
    text-decoration:none;
    padding:14px 28px;
    border-radius:12px;
    font-weight:bold;
    transition:.3s;
    font-size:16px;
}
.binance{
    background:#f0b90b;
    color:black;
}
.airtm{
    background:#000000;
    color:#e1e1e1;
}
.btn:hover{
    transform:translateY(-3px);
    opacity:.9;
}
.footer{
    margin-top:20px;
    font-size:14px;
    color:#94a3b8;
}


  /* Responsive */
  @media (max-width: 768px) {
    .team {
      flex-direction: column;
      align-items: center;
    }
    .info-section {
      padding: 24px 24px;
      gap: 32px;
      grid-template-columns: 1fr;
    }
  }
