/* Page Header */
      .page-header {
        margin-top: 60px;
        padding: 60px 40px;
        background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
        position: relative;
        overflow: hidden;
      }

      .page-header::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(45, 91, 255, 0.1) 0%,
          transparent 70%
        );
        top: -200px;
        right: -200px;
        border-radius: 50%;
      }

      .page-header-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #ff6b35;
        margin-bottom: 20px;
      }

      .breadcrumb a {
        color: #64748b;
        text-decoration: none;
        transition: color 0.3s;
      }

      .breadcrumb a:hover {
        color: #1e3a8a;
      }

      .page-title {
        font-size: 48px;
        font-weight: 800;
        color: #1e3a8a;
        margin-bottom: 15px;
      }

      .page-subtitle {
        font-size: 18px;
        color: #64748b;
        line-height: 1.6;
        max-width: 700px;
      }

      /* Organization Chart Section */
      .org-section {
        max-width: 1400px;
        margin: -40px auto 80px;
        padding: 0 40px;
        position: relative;
        z-index: 10;
      }

      .org-container {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        padding: 50px;
      }

      .org-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 2px solid #f1f5f9;
      }

      .org-badge {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(45, 91, 255, 0.1);
        color: #2d5bff;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 15px;
      }

      .org-title {
        font-size: 32px;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 12px;
      }

      .org-description {
        font-size: 16px;
        color: #64748b;
        line-height: 1.7;
        max-width: 600px;
        margin: 0 auto;
      }

      /* Image Container */
      .org-image-wrapper {
        background: #f8fafc;
        border-radius: 16px;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        min-height: 600px;
      }

      .org-image-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
      }

      .org-image {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
        cursor: pointer;
      }

      .org-image:hover {
        transform: scale(1.02);
      }

      /* Placeholder for organization chart */
      .org-placeholder {
        width: 100%;
        max-width: 1000px;
        height: 700px;
        background: linear-gradient(135deg, #2d5bff 0%, #1e3a8a 100%);
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        position: relative;
        overflow: hidden;
      }

      .org-placeholder::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: -100px;
        right: -100px;
      }

      .org-placeholder::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(255, 107, 53, 0.1);
        border-radius: 50%;
        bottom: -80px;
        left: -80px;
      }

      .org-placeholder-icon {
        font-size: 100px;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
      }

      .org-placeholder-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
        padding: 0 20px;
        position: relative;
        z-index: 1;
      }

      .org-placeholder-text {
        font-size: 16px;
        opacity: 0.9;
        text-align: center;
        padding: 0 40px;
        line-height: 1.8;
        position: relative;
        z-index: 1;
        max-width: 600px;
      }

      /* Action Buttons */
      .org-actions {
        margin-top: 40px;
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .btn-action {
        padding: 14px 32px;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        font-family: "Poppins", sans-serif;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .btn-download {
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
      }

      .btn-download:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      @keyframes zoomIn {
        from {
          transform: scale(0.8);
        }
        to {
          transform: scale(1);
        }
      }


      @media (max-width: 768px) {
        .navbar {
          padding: 15px 20px;
        }

        .page-header {
          padding: 40px 20px;
        }

        .page-title {
          font-size: 32px;
        }

        .org-section {
          padding: 0 20px;
        }

        .org-container {
          padding: 30px 20px;
        }

        .org-image-wrapper {
          padding: 20px;
          min-height: 400px;
        }

        .org-placeholder {
          height: 500px;
        }

        .org-placeholder-icon {
          font-size: 70px;
        }

        .org-placeholder-title {
          font-size: 22px;
        }

        .org-actions {
          flex-direction: column;
        }

        .btn-action {
          width: 100%;
          justify-content: center;
        }
      }