    .highlight-bar {
      width: 60px;
      height: 4px;
      background-color: #59d6dc;
      margin: 0 auto 20px auto;
    }
    .ceo-card {
      background-color: #def2fb;
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      width: 200px;
    }
    
        .award-card {
      padding: 20px;
      background-color: transparent;
      text-align: center;
      width: 200px;
    }
    .ceo-image {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }
        .award-image {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }
    .ceo-title {
      font-weight: bold;
      margin-top: 10px;
    }
    .ceo-subtitle {
      color: #555;
    }
        .stat-circle {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: linear-gradient(to bottom, #0274b4, #11d4dd);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 38px;
      font-weight: 500;
      margin: 0 auto 15px auto;
    }

    .stat-text {
      text-align: center;
      text-transform:uppercase;
    }

    .stat-text strong {
      display: block;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom:8px;
    }

    .stat-text small {
      display: block;
      font-weight: 300;
      color: #333;
      font-size: 14px;
      text-transform: uppercase;
    }
    

    .faq-item {
      background-color: #f6fafb;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .faq-question {
      padding: 20px;
      font-size: 16px;
      font-weight: normal;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .faq-question span {
      font-weight: bold;
      margin-right: 10px;
    }

    .faq-icon {
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 20px;
      background-color: #f9fdfd;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 15px 20px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }