/* About Section */
    .about-section {
      max-width: 900px;
      margin: 15px auto 0 auto;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.13);
      padding: 48px 38px 38px 38px;
      text-align: center;
      position: relative;
    }
    .about-section h1 {
      color: #232526;
      margin-bottom: 18px;
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: 1px;
    }
    .about-section h2 {
      color: #63625f;
      margin-top: 36px;
      margin-bottom: 12px;
      font-size: 1.4rem;
      font-weight: 700;
    }
    .about-section p {
      color: #444;
      font-size: 1.05rem;
      margin-bottom: 18px;
      line-height: 1.7;
    }
    .about-values {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: center;
      margin: 36px 0 0 0;
    }
    .about-value-card {
      /* background-color: gold; */
      background: linear-gradient(135deg, #fbbf24 0%, #fffbe8 100%);
      border-radius: 14px;
      box-shadow: 0 2px 8px #fbbf2433;
      padding: 28px 22px;
      min-width: 220px;
      max-width: 300px;
      flex: 1 1 220px;
      text-align: center;
      color: #232526;
      font-weight: 600;
      font-size: 1.08rem;
    }
    .about-value-card span {
      font-size: 2.5rem;
      display: block;
      margin-bottom: 10px;
    }
    .about-team {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      margin-top: 30px;
    }
    .about-team-member {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      padding: 24px 18px;
      min-width: 220px;
      text-align: center;
    }
    .about-team-member img {
      border-radius: 50%;
      width: 80px;
      margin-bottom: 10px;
    }
    .about-team-member h2 {
      margin: 10px 0 4px 0;
      font-size: 1.1rem;
      color: #232526;
    }
    .about-team-member p {
      margin: 0;
      color: #666;
      font-size: 0.98rem;
    }
    @media (max-width: 600px) {
      .about-section {
        padding: 18px 4vw;
      }
      .about-values {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: center;
      }
      .about-team {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: center;
      }
    }
    .icon{
      font-size: 2.5rem; 
      display: block; 
      margin-bottom: 14px; 
      color: #fbbf24;
    }
    .sub-heading{
      font-size:1.18rem; font-weight:700; color:#232526;
    }
    .paragraph{
      margin:10px 0 0 0; color:#444; font-size:0.8rem; font-weight:400;
    }