body {
      font-family: "Tajawal", sans-serif;
      background: linear-gradient(135deg, #f6f7f3 0%, #ffffff 100%);
      margin: 0;
      padding: 0;
      color: #333;
      overflow-x: hidden;
    }

    .chairman-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      animation: fadeIn 1.5s ease-in-out;
    }

    .chairman-title {
      font-size: 2.5rem;
      color: #7a884e;
      margin-bottom: 40px;
      position: relative;
    }

    .chairman-title::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #a97a37;
      border-radius: 2px;
    }

    .chairman-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      max-width: 800px;
      padding: 40px;
      line-height: 1.9;
      color: #444;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      animation: slideUp 1.5s ease-in-out;
    }

    .chairman-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .bismillah {
      font-size: 1.2rem;
      color: #8aaa0d;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .chairman-signature {
      margin-top: 50px;
      text-align: center;
      color: #7a884e;
    }

    .chairman-signature .role {
      font-size: 1rem;
      color: #a97a37;
    }

    .chairman-signature .name {
      font-size: 1.3rem;
      font-weight: bold;
      margin-top: 5px;
      color: #7a884e;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideUp {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @media (max-width: 768px) {
      .chairman-title {
        font-size: 2rem;
      }
      .chairman-card {
        padding: 25px;
      }
    }